jQuery(document).ready(function(){ 

//	$('ul#galList a').lightBox();
//	$('ul#gal a.review').lightBox();


	 $("ul#galList a").fancybox({
		'hideOnContentClick': false,
	 	 'overlayOpacity': 0.7 
	 }); 

	 $("ul#gal a").fancybox({
		'hideOnContentClick': false,
	 	 'overlayOpacity': 0.7 
	 }); 

	$('#download').click(function(){
		//alert("me");
	});

	$('ul#nav > li').hover(
		function() {
			$('ul', this).css('display', 'block');

		},
		function() {
			$('ul', this).css('display', 'none');

		}
	);

	$('ul.thumbs li').hover(
		function() {
			$(this).find('div.thumb_hover').show(0);
		},
		function() {
			$(this).find('div.thumb_hover').hide(0);		
		}
	);

	$('#title, .title').sifr({
		path: '/flash/',
		font: 'fenway',
		color:'#fff',
		height: "40"
	}); 
});

		//Home page autofill on form boxes
		$(document).ready(function(){
				$('.firstName').autofill({
					value: 'First Name',
					defaultTextColor: '#000',
					activeTextColor: '#000'
				});

				$('.lastName').autofill({
					value: 'Last Name',
					defaultTextColor: '#000',
					activeTextColor: '#000'
				});

				$('.email').autofill({
					value: 'E-mail',
					defaultTextColor: '#000',
					activeTextColor: '#000'
				});
		
});






