/*	
	Format the site search
*/

jQuery(document).ready(function(){
	
	jQuery('.signup label').hide();
	jQuery('.signup input[type="text"]').each(function() {
		jQuery(this).attr('value',jQuery(this).prev().html());
	});
	jQuery('.signup input[type="text"]').focus(function() {
		if (jQuery(this).attr("value") == jQuery(this).prev().html()) {
			jQuery(this).attr("value","");
		}
	});
	jQuery('.signup input[type="text"]').blur(function() {
		if (!jQuery(this).attr("value")) {
			jQuery(this).attr("value",jQuery(this).prev().html());
		}
	});
	jQuery('.signup').append('<p class="signUpTab">Sign-up</p>');
	jQuery('.signUpTab').toggle(function() {
		jQuery('.signup').animate({top:"0px"});
	}, function() {
		jQuery('.signup').animate({top:"-75px"});
	});
	jQuery('.signup').css({top:"-75px"});
	
	jQuery(':submit').each(function() {
		jQuery(this).replaceWith('<p class="inputSubmit"><a href="#">'+jQuery(this).attr('value')+'</a></p>');
	});
	jQuery('.inputSubmit a').click(function() {
		jQuery(this).parents('form').submit();
		return false;
	});
	
});