/*$(".dropdownparent").hoverIntent(function(){
							var offsettop = $(this).offset();
							//var tp = parseInt(parseInt($(this).children(".dropdown").css("top"))-2);
							var tp = $(this).position().top+$(this).height();
							var lf = $(this).position().left;
							$(this).children(".dropdown").css({"top":tp, "left":lf});
							if(!$(this).hasClass("parentmenu")){							
								$(this).children("a:first").css({"background":"url(/images/menu_on.jpg)", "color":"white"});
							}
							$(this).children(".dropdown").show();
			$(".subdropdownparent").hoverIntent(function(){						
							$(this).children("a:first").css({"background-color":"#0a3967", "color":"white"});
							var offset = $(this).parent().offset();
							var offsettop = $(this).offset();
							if($(this).children(".subdropdown").html() != null){
								pos = $(this).parent().width();
								$(this).children(".subdropdown").css({"left":pos});
								$(this).children(".subdropdown").show();
							}
						}, 
						function(){												
							$(this).children("a:first").css({"background-color":"","color":"#595959"});
							$(this).children(".subdropdown").hide();
						});	
						
						*/				
.dropdownparent:hover{background:url('/images/menu_on.jpg');}
.dropdownparent:hover .dropdown{display:block;}

.subdropdownparent:hover{background-color:#0a3967;}
.subdropdownparent:hover a{color:white;}
.subdropdownparent:hover .subdropdown{display:block; left:220px;}
.subdropdownparent:hover .subdropdown a{color:#595959;}

#side_menu_css{visibility:visible;}
#sidemenutree a:hover{color:blue;}