// 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,
				size: 1
			 
				// ... the rest of the configuration properties 
			}					   
		); 
		var no = $("div.scrollable").scrollable().getItems().size();
		if(no == 1){
			//salert(no);
			$('.next').hide();
			
		}
		
		*/
		
		/*$("div.scrollable:eq(0) div.items div").click(function() { 
 
        	// perform the effect 
			//alert("hola");
			// $(this).fadeOut().fadeIn(); 
 
   		 }); */
		
		
		
	
	
// END TAG
});




