$(document).ready(function()
{
    $("#inptCategory").change(function(){
        redirectToURL(website_url+$("#inptCategory option:selected").attr("value"));
    });

    $("#frmQuicksearch").submit(function(event){
        event.preventDefault();
        executeSearch($("#inptQuickSearch").attr("value"));
    });
});

/***************************************\
| Functions
\***************************************/
function redirectToURL(URL){   
     window.location.href = URL;//alert(URL);
}

function executeSearch(searchString){

    URL = website_url+'products.php?searchProdName=';
    URL+=searchString;
    //alert(URL);//
    //http://devel.oidev.net/clients/chemistoutletsearch-products.php?criteria=panadol
    redirectToURL(URL);
}


//preload images
function preloader(images) 
{
     // counter
     var i = 0;


     // create object
     imageObj = new Image();

     // start preloading
     for(i=0; i<=3; i++) 
     {
          imageObj.src=images[i];
     }
} 




