// JavaScript Document
// http://malsup.com/jquery/block/#demos

$(document).ready(function(){
		
		$('#pane').jScrollPane({showArrows:true, scrollbarWidth: 17, dragMaxHeight: 150});

		
		// initialize scrollable  images
		/*
		$("div.scrollable").scrollable(
			{ 
 
				// one configuration property 
				size: 1
			 
				// ... the rest of the configuration properties 
			}					   
		); 
		*/
		
		/*$("div.scrollable:eq(0) div.items div").click(function() { 
 
        	// perform the effect 
			//alert("hola");
			// $(this).fadeOut().fadeIn(); 
 
   		 }); */
	
	
	
	$(".preview").click( function() {					 
			
			$('#catimg').hide();
			var catImgSrc = $(this).attr("alt");				
			$('#catimg').attr('src', catImgSrc);			
			$('#catimg').fadeIn("slow");
			
			//alert(catImgSrc);
			
			return false;
		});
	
	/*
	imgFldr = 'images/nameofthesubfolder/';
	
	$("input[type='radio']").click(function() {
											
	$('#'+this.name).attr('src', imgFldr+this.value).attr('alt', 'newattribute');
	
	});
	
	*/
	
	
	
	
	
	
// END TAG
});





