$(document).ready(function(){

	$("#h_a_rotater").innerfade({});
	$(".twmailadr_substitute").html("<a href='mailto:post@"+"tonerweb.no'>"+"post@"+"tonerweb.no</a>");

	$(".product_image a").click(function(event){
		event.preventDefault();
		$(".image_large_view").toggle();
	});


	$("#search input").focus(function(){
		if($(this).attr("value_orig") == $(this).val()){
			$(this).val("");
		}
	});

	$("#search input").blur(function(){
		if($(this).val() == ""){
			$(this).val($(this).attr("value_orig"));
		}
	});

	var clicks = 0;
	$("#complete_button").click(function(event){
		if(clicks++ >= 1){
			if(clicks > 2){
				alert("Om knappen ikke responderer, vennligst \noppdater siden (trykk F5) og prøv på nytt.");
			}else{
				alert("Vennligst kun trykk en gang på denne knappen.");
			}
			event.preventDefault();
		}
	});

});
