// 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
			 
			}					   
		); 
		
		
		
		
		var no = $("div.scrollable").scrollable().getItems().size();
		
		if(no == 1){
			//salert(no);
			$('.next').hide();
			$('.prev').hide();
			
		}
		
		
		
	
	
// END TAG
});





