

$(document).ready(function() {

$(window).load(function() { 
	$('div#preload').fadeOut(200);
});


	// Hover bilder
	$(".post img").hover(function(){
		$(this).fadeTo("fast", 0.8); 
	},function(){
			$(this).fadeTo("fast", 1.0); 
	});
			
	// Lat laddning
	$("img").lazyload({ 
				threshold : 200, 
			    effect : "fadeIn"
			});

	// Till toppen
		$('.backtotop').click(function(){
		$('html, body').animate({scrollTop:0}, 'slow');
	});
	
	/* Visar/doljer text i sokfaltet */
	$('input[type="text"]').addClass("idleField");
	    		$('input[type="text"]').focus(function() {
	    			$(this).removeClass("idleField").addClass("focusField");
	 		    if (this.value == this.defaultValue){
	 		    	this.value = '';
		}
		if(this.value != this.defaultValue){
	  			this.select();
	  		}
	 		});
	 		$('input[type="text"]').blur(function() {
	 			$(this).removeClass("focusField").addClass("idleField");
	 		    if ($.trim(this.value) == ''){
	    	this.value = (this.defaultValue ? this.defaultValue : '');
		}
	 		});

// Slut ready-func
});


