jQuery(document).ready(function () {
	
	jQuery('#wannasearch').mouseover(function() {
		jQuery('#wannasearch').fadeOut('fast', function() {
			});
		setTimeout(function () {
		  jQuery('#searchform-align').slideDown('slow', function() {
			});
		}, 1100)
		setTimeout(function () {
			jQuery("#search-align").animate({
				"width": "toggle"
			}, {
				duration: 610
			});
		}, 2100)
	});

	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	jQuery("#version-info-show").click(function(){
		jQuery('#version-info-text-align').slideToggle('slow', function() {  });
		 	return false; //Prevent the browser jump to the link anchor
	});

});



