<!-- product  -->
$(function() {             
    $('#container-4').tabs({ fxFade: true, fxSpeed: 'fast' });              

	
<!-- mail -->	
	$('#submitBtn1').formValidator({
				onSuccess	: function() { console.log('Success!'); },
				scope		: '#form-1',
				errorDiv	: '#errorDiv1'
			});
			
			
}); // EXECUTE PLUGIN ON DOM READY - END



function register(){
		$.ajax({
		type: "POST",
		url: "newsletter_process.php",
		data: 	"email=" + document.getElementById("email").value,
		success: function(html){
			$("#response").html(html);
		}
		});				
} 	

<!-- slider one pic -->
$(document).ready(function(){

$("#slider").easySlider({
	orientation:'horizontal'
});
<!-- zoom img -->		
$('a.customGal').zoomimage({
	controlsTrigger: 'mouseover',
	className: 'custom',
	shadow: 40,
	controls: false,
	opacity: 1,
	beforeZoomIn: function(boxID) {
		$('#' + boxID)
			.find('img')
			.css('opacity', 0)
			.animate(
				{'opacity':1},
				{ duration: 500, queue: false }
			);
	},
	beforeZoomOut: function(boxID) {
		$('#' + boxID)
			.find('img')
			.css('opacity', 1)
			.animate(
				{'opacity':0},
				{ duration: 500, queue: false }
			);
	}
});	
<!-- end zoom img -->	

$('a.bwGal').zoomimage({
	border: 20,
	centered: true,
	hideSource: true
});

	
});	

