if($("#categories").hoverIntent!=null){
	function makeShow(){$('#categories_list').show(); $('#litbBtn').css({backgroundPosition:"0px -14px"});}
	function makeHide(){$('#categories_list').hide();$('#litbBtn').css({backgroundPosition:"0px 0px"});}

	var cate_config = {
		     sensitivity: 20, // number = sensitivity threshold (must be 1 or higher)    
		     interval: 50, // number = milliseconds for onMouseOver polling interval    
		     over: makeShow, // function = onMouseOver callback (REQUIRED)    
		     timeout: 120, // number = milliseconds delay before onMouseOut    
		     out: makeHide // function = onMouseOut callback (REQUIRED)    
	};
}
	
$(function(){
	$('select.currency').change(function(){
		$.ajax({
			type :"post",
			url :'/?c=currency',
			dataType :"text",
			data : {currency:this.value},
			success : function(response) {
				window.location.reload();
			},
			error:function(event,request,settings){
				if(request=='error'){
					alert("Sorry, there was a problem loading this page. Please try again later.");
				}
			}
		});
	});
});
