
$(document).ready(function(){
//this fixes ie6 issue where hidden filters(shop,shop_all) leave an empty gap. Please do not remove
$("li.filter_group").find("li a.hide").parent().css({"display":"none"})

//hide the criterio filter as per request
$("ul#apply_filter li.filter_group ul li").find("a#fWC_DEPTcriteo").hide();


var category_id = $("body").attr("class").split(" ")[0];


if(category_id === 'wc_dept_bags')
{
	//bags only have one size filter so this prevents js from hiding the colour filter
	
	
}
else{
//this hides the size filter as it currently does not display in correct order
$("ul#apply_filter li.filter_group:last").css({"display":"none"}) 	
	
}


if( $.browser.safari ){
	
	
	$("form#eNewsForm input").css({"font-size":"10px","padding":"6px 3px 0 3px"})
	$("form#searchForm input").css({"font-size":"10px"})
	

}







 });


	
	
	




