// Product page gallery
$(document).ready(function(){
	$('ul.galleria').galleria({
		history: false,
		clickNext: false,
		insert: '.bigPic'
		});
	});

// Home page slider
$(function() {	
	$('#slides') 
	.before('<div id="sliderNav">') 
	.cycle({ 
		fx: 'fade', 
		speed: 'slow', 
		timeout: 6000, 
		pager: '#sliderNav' 
	});
});

// Contact Form
$(document).ready(function(){
	$('#emailForm').ajaxForm(function(data) {
		if (data==1){
			$('#success').fadeIn("slow");
			$('#badserver').fadeOut("slow");
			$('#bademail').fadeOut("slow");
			$('#emailForm').resetForm();
		}
		else if (data==2){
			$('#badserver').fadeIn("slow");
		}
		else if (data==3)
		{
			$('#bademail').fadeIn("slow");
		}
	});
});

