function view_category(){
	var cat = jQuery("#symptoms option:selected").val();
	//alert(cat);
	if(cat != ""){
		window.location.href = "/products/"+cat+"/";
	}
}
function view_product(){
	var product_url = jQuery("#products_dd option:selected").val();
	//alert(cat);
	if(product_url != ""){
		window.location.href = product_url;
	}
}


/* Retrieve list of retailers for a postcode */
function get_retailers(){
	jQuery('#retailers_con').html("<img src='/wp-content/themes/brauer/images/ajax-loader.gif' alt='Loader' />");
	var postcode_val = jQuery("#postcode").val();
	jQuery.ajax({	
		type: "POST",
		url: '/wp-content/themes/brauer/retailers.php',
	    timeout: 7000,				    
	    data: {postcode:postcode_val},
	    success: function(msg) {
		   jQuery('#retailers_con').html(msg);
	    },
	    error: function(msg) {
			
	    }
	});
}
