/* 
	Description: Javascript & jQuery functions
	Author: Miguel Estrada
	Author URI: http://bleucellar.com/
*/


/* jQuery Code */

$(function(){
	
	$("#contactForm").validate();
	// home page javascript/jquery
	$("#home-slider")
		.easySlider({
			auto: true,
			continuous: true,
			controlsShow: false,
			pause: 4000
		});
		
	$("#bleu-gallery").wtGallery({
		num_display: 7,
		background_color: "#EEEEEE",
		window_color: "#333333",
		padding: 10,
		screen_width: 575,
		screen_height: 323,
		thumb_width: 75,
		thumb_height: 75,
		thumb_margin: 5,
		text_pane_align: "bottom",
		auto_rotate: true,
		delay: 5,
		trigger_stop: true,
		border: "1px solid #222222",
		image_nav: true,
		info_pane: false,
		thumb_nav: true,
		pagination: true,
		transition: "random",
		transition_speed: "slow",
		segment_size: 30,
		callback: function(){
			$("a[rel^='prettyPhoto']").prettyPhoto({
				theme: 'dark_square'
			});
		}
	});
	/*	

	$('.gallery')
		.easySlider({
			auto: true,
			continuous: true,
			pause: 4000,
			speed: 300,
			numeric: true
		});
		//*/	
	Cufon.replace('#home-slider h2, #content h2');

});
