/* File automatically GZipped */
/*$(function(){
	$("ul#nav li").hover(function(){
		$('div',this).slideDown("slow");
	});
});
	
		var ul = $(this).children("div");   
		var pos = $(this).css("background-position");
		if (pos == 'undefined' || pos == null) {
			pos = $(this).css("background-position-x"); //die in hell
		} else {
			pos = pos.split(" ")[0];
			alert(pos);
		}

		$(this).css('background-position', pos+' -62px')

		if (ul.is(":animated")) {
			ul.stop()
			ul.css("height", "auto");
			ul.slideDown("normal");
		} else {
			ul.css("display", "none");
			ul.slideDown("normal");
		}
	},
	function(){
		var ul = $(this).children("div"); 
		var pos = $(this).css("background-position");
    if (pos == 'undefined' || pos == null) {
        pos = $(this).css("background-position-x"); //die in hell
    } else {
        pos = pos.split(" ")[0];
    }
	
		if(ul.is(":animated")){
			ul.stop()
			.css("height", "auto")
			.slideUp("fast");
		}
		else{
			ul.slideUp("fast");
		}
		
		$(this).css('background-position', pos+' 0px')
	});
	
	$("a.headersearch").click(function(){
		var ul = $(this).closest("div"); 
		 ul.hide();
	});
	
	$("a.headersearch").fancybox({
		'frameWidth': 450,
		'frameHeight': 500,
	  'hideOnContentClick': false 
	});
	
	$("a.search").fancybox({
		'frameWidth': 450,
		'frameHeight': 500,
	  'hideOnContentClick': false 
	});
});*/
