$(document).ready(function(){
	$(window).bind("load", function() {
		var sideBarContentHeight = $("div.innerCategoryBox").height();
		
		//Set side bar bamboo broder height. Assign the height to both of them from .innerCategoryBox			
		//Border Left
		$("div.categoryBoxBorderLeft").height((sideBarContentHeight)+1);		
		//Border Right
		$("div.categoryBoxBorderRight").height((sideBarContentHeight)+1);
		
		$("#sideMenu li").hover(
			function(){
				$(this).children("div").addClass("menuMouseOver");
				$(this).children("div").find("div:eq(0)").addClass("bulletsHover");
				$(this).children("div").find("a:eq(0)").addClass("titleHover");
			},
			function(){					
				$(this).children("div").removeClass("menuMouseOver");
				$(this).children("div").find("div:eq(0)").removeClass("bulletsHover");
				$(this).children("div").find("a:eq(0)").removeClass("titleHover");
			}				
		)
	});	
});
