 $(window).load(function() {
	$('#slider').nivoSlider({
		effect:'fade'						
	});
});


$(document).ready(function(){
	
	// AUTO SELECT
	$("input, textarea").focus(
	 function(){
	  // only select if the text has not changed
	  if(this.value == this.defaultValue) {
	   this.select();
	  }
	 }
	)


});
