$(function(){
	$('#scroller').jScrollPane({showArrows:true, dragMaxHeight:39, scrollbarWidth:7});				                
});
function replace_img (id, source){
	document.getElementById(id).src = source;
}
$(function(){
	$('#imageframe_1').cycle({fx: 'fade', speed:  1000, timeout:  7500, speedOut: 4000});
	$('#imageframe_2').cycle({fx: 'fade', speed:  1000, timeout:  7500, speedOut: 4000});
	$('#imageframe_3').cycle({fx: 'fade', speed:  1000, timeout:  7500, speedOut: 4000});
});
function show_hide(div){
	$(""+div+"").toggle(); 
}
$(function() {
	$('.lightbox').lightBox();
});
$(function() {
	$('.lightbox').hover(
		function () {  
			gallery_pause();
		},
		function () {  
			gallery_resume();
		}
	);
});

function gallery_pause(){

	$('#imageframe_1').cycle('pause');
	$('#imageframe_2').cycle('pause');
	$('#imageframe_3').cycle('pause');
	
}

function gallery_resume(){

	$('#imageframe_1').cycle('resume');
	$('#imageframe_2').cycle('resume');
	$('#imageframe_3').cycle('resume');
}
