		$(document).ready(function(){
					$(".tb-detail").stop().css("opacity", 0,"top", 100);
						   
			$(".thumbox").hover(
					function() {

						$(this).children(".tb-detail").stop().animate({opacity: "1"},{queue:false,duration:280});
						$(this).children(".thumbtop").children(".tbbw").stop().animate({opacity: "0"}, 300);
						},
						function() {	
						$(this).children(".tb-detail").stop().animate({opacity: "0"},{queue:false,duration:280});
						$(this).children(".thumbtop").children(".tbbw").stop().animate({opacity: "1"}, 600);
						
					});

						$("ul.sub-menu").slideToggle("hide");

		
					$("li.menu-item a").click(
					function() {
						$(this).next("ul.sub-menu").slideToggle("show");
					},
						function() {		
					    $(this).next("ul.sub-menu").slideToggle("hide");
						
					});




			});
