
$(document).ready(function(){
	
	if( menu_at ){
		$(".menu .over").removeClass('over');
		$(".menu [op='"+menu_at+"']").addClass('over');
	}
	
	try{
		if( product_at ){
			$(".pro_list a").each(function(){
				if( $(this).attr('href') == "/products/"+product_at+".shtml" ){
					$(this).parent().addClass('over');
				}
			});
		}
	}
	catch(e){}
});
