$(function(){
	
	/******** Searchbox ********/
	
	$("#mainsearch").bind("focus", function(event){

		if(this.value == $("#mainsearchdefault").val()){
			$(this).val('');
		}

	});

	$("#mainsearch").bind("blur", function(event){
	
		if(this.value == ""){
			$(this).val($("#mainsearchdefault").val());
		}

	});
	
	/******** Searchbox END ********/
	
	if($('#dummycontainer')){
		
		$('#dummycontainer, #overlay').width($(window).width());
		$('#dummycontainer, #overlay').height(window.innerHeight ? window.innerHeight : $(window).height());
		
		$(window).resize(function(e){
			$('#dummycontainer, #overlay').width($(window).width());
			$('#dummycontainer, #overlay').height(window.innerHeight ? window.innerHeight : $(window).height());
		});
		
	
	}


});
