jQuery(function(){  
	$(document).ready(function() {
            $("#header #mainNav li").hover(
		function () {
                    $(this).addClass("hover");
		}, 
		function () {
                    $(this).removeClass("hover");
                }
            );
                            
            jQuery('a.lab_popup').live('click', function(){
                newwindow=window.open($(this).attr('href'),'Design_Lab','height=625,width=955');
                if (window.focus) {newwindow.focus()}
                return false;
            });
	});
});
