$(document).ready(function() {
	
	// Hide input values
	hideInputValues();
	
	// Page scroll
	scroll_totop();
	
}); 

// Hide input values
function hideInputValues() {
	$("#search_form input").blur(function() {
		if ($(this).attr("value") == "") {
			$(this).attr("value", "Search…");
			$(this).addClass("default");
		}
	});
	$("#search_form input").focus(function() {
		if ($(this).attr("value") == "Search…") {
			$(this).attr("value", "");
			$(this).removeClass("default");
		}
	});
}

// Page scroll
function scroll_totop() {
	$('a#top').click(
	    function(){
    		$.scrollTo( '#rydzdesign_co_uk', 500 );
    		return false;
    	}
    );
}
