﻿$(document).ready(function() {

    var options, a;
    options = { serviceUrl: '/ajax_get_searchhints.aspx'
        //, onSelect: function(value, data){ alert('You selected: ' + value + ', ' + data); } 
    };
    a = $("input[id=q]").autocomplete(options);

    $("#viewcart").click(function(event) {
        self.location = "/cart.aspx";
        event.preventDefault();
    });

    $("#contactus").click(function(event) {
        self.location = "/contact-us.aspx";
        event.preventDefault();
    });

    $("#privacypolicy").click(function(event) {
        self.location = "/privacy-policy.aspx";
        event.preventDefault();
    });

    $("#termsandconditions").click(function(event) {
        self.location = "/terms-and-conditions.aspx";
        event.preventDefault();
    });

    $("a[name=contactus]").click(function(event) {
        self.location = "/contact-us.aspx";
        event.preventDefault();
    });
});
