// Filter table data
$(document).ready(function(){


//B. Target anything above IE6
if ($.browser.msie && $.browser.version <= 8 ) {

} else {
	
	$("#filter").fadeIn("fast");

}


$("#btn_filter").click(function() {
	
	var parent_cat = $('#select_parent_cat').val();
	var cat = $('#select_category').val();
	var brand = $('#select_brand').val();
	
	//alert (cat + ' : ' + brand);
	
	var host = jQuery.url.attr("host");
	
	var url = "http://" + host + "/" + parent_cat + "/" + cat + "/" + brand;
	//alert (url);
	//url = "http://somewhere.com"+ gotourl.id.value + "/restoffile.html";
	location.href = url;

	return false;
});

var selectoptions = {
			
			"Vegetables": {
    	         "key" : 10,
                 "defaultvalue" : 111,
    	         "values" : {
                     "tomato": 110,
                     "potato": 111,
                     "asparagus": 112
                     }
              },
            "Fruits": {
                 "key" : 20,
                 "defaultvalue" : 212,
                 "values" : {
                     "apple": 210,
                     "orange": 211,
                     "kiwi": 212,
                     "melon": 213
                     }
              }
    };
    
    $('#first').doubleSelect('second', selectoptions);     
    
    
});//end doc ready