// JavaScript Document
//Js effects began to load the page
$("#categories").hoverIntent(cate_config);
function makeShow(){$('#categories_list').show(); $('#litbBtn').css({backgroundPosition:"0px -14px"});}
function makeHide(){$('#categories_list').hide();$('#litbBtn').css({backgroundPosition:"0px 0px"});}

$(".th_dropdown>ul>li").hoverIntent(function(){$(this).find('ul').show();},function(){$(this).find('ul').hide();});
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)    
	};
	
	
	
	
	
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)    
	};
$("#categories").hoverIntent( cate_config );
function makeShow(){$('#categories_list').show(); $('#litbBtn').css({backgroundPosition:"0px -14px"});}
function makeHide(){$('#categories_list').hide();$('#litbBtn').css({backgroundPosition:"0px 0px"});}


