// JavaScript Document

$(function() {
			  

		
});

window.onload = function() {
	
	var footer = $('#footer');
	
	footer.css('margin-top', ("-" + footer.height() + "px" ));
	$('#main').css('padding-bottom', (10 + footer.height()));
	
	$('#search').focus(function() {
		if ($(this).val() == "Search...") {
			$(this).val("");
		}
	 });
	$('#search').blur(function() {
		if ($(this).val() == "") {
			$(this).val("Search...");
		}
	});
	
}
