// JavaScript Document

jQuery().ready(function () {
	jQuery("#searchform").css( "top","30px" );
	jQuery("#overlay,#searchform h2 a").click(
		function(){
			jQuery("#searchform").animate({"opacity":"hide","filter":''}, "500", function(){
				jQuery("#searchform").css( "top","30px" );jQuery("#overlay").fadeOut(1000);
				});
			return false;
		}
	);
	
	jQuery("#header a").each(
		function(i) {
			linkurl = jQuery(this).attr('href');
			if(linkurl.indexOf('search') == 1){
				jQuery(this).click(function() {
					jQuery('#overlay').animate({"opacity":"show","filter":''}, "500",function(){
						jQuery('#searchform').animate({"top": "+=30px","opacity":"show","filter":''}, "5000");						
					});
					return false;
				});
			}
		}
	);
});
