// JavaScript Document

$(window).load(function() {
	//gallery
	$('#slider').nivoSlider({
		effect:'sliceUpDown', //# sliceDown # sliceDownLeft # sliceUp # sliceUpLeft # sliceUpDown # sliceUpDownLeft # fold # fade
		slices: 4,
		animSpeed: 2000,
		pauseTime: 6000,
		startSlide: 0, //Set starting Slide (0 index)
		directionNav: false, //Next & Prev
		directionNavHide: true, //Only show on hover
		controlNav: (window.location.pathname != '/'), //1,2,3... //false for home page, true for product pages
		controlNavThumbs: true, //Use thumbnails for Control Nav
		controlNavThumbsSearch: 'large', //Replace this with...
		controlNavThumbsReplace: 'small', //...this in thumb Image src
		keyboardNav: true, //Use left & right arrows
		pauseOnHover: false, //Stop animation while hovering
		manualAdvance: false, //Force manual transitions
		captionOpacity: 0.8, //Universal caption opacity
		beforeChange: function(e){
			//$('a.nivo-control.active').animate({backgroundColor: '#FFF'});
			//$('a.nivo-control div').fadeOut();

		},
		afterChange: function(){
			//$('a.nivo-control:not(.active) div').fadeOut();
		},
		slideshowEnd: function(){} //Triggers after all slides have been shown
	});
	//contact
	$('#contact_submit').click(function() {
		$.post('ajax_contact.php', $('#contact_form').serialize(), function(response) {
			if (response == 'Message sent!') {
				$('#contact_form :input').val('');
			}
			$('#contact_message div').fadeOut('fast', function() {
				$(this).html(response).fadeIn('fast');
			});
		});
		return false;
	});
});
