 $(document).ready(function(){
  	//borrado value en input
		$("input, textarea").focus(function() {
			if( this.value == this.defaultValue ) {
				this.value = "";
			}
		}).blur(function() {
			if( !this.value.length ) {
				this.value = this.defaultValue;
			}
		});
		
		//carga de imágenes	
		$(function() {          
		     $("#artist img").lazyload({
		         placeholder : "img/ajax-loader.gif", 
		         event : "sporty", effect : "fadeIn"  
		     });
		 });
		$(function() {          
		     $("#productos:not(.mini)").children('img').lazyload({
		        
		         event : "sporty", effect : "fadeIn"  
		     });
		 });
/*	

		$('#container div').hide();
			$("#header").fadeIn();
			$("#sidebar").slideDown();
			$("#artist").slideDown();
			$(".b_2,.b_1 , .jScrollPaneContainer").slideDown();
			$("#footer, .newsletter").fadeIn();
			$("#container div").show();
	
			
*/		
	
			$("img").trigger("sporty");
		//	$('#sidebar ul').accordion();
	});
	

