$(document).ready(function(){				
		$('#myGallery').jswitch({
				   // Try false to desable auto switching or set interval in second
			callback:function(jswitch){	// use allback for close integration betwin your own and library		
				$('#next').click(function(){
					jswitch.nextImage();
					return false;					
				});
				
				$('#prev').click(function(){
					jswitch.prevImage();
					return false;						
				});
			}			
		});			
	});

