$(document).ready(function() {

///////////////////////////////////////////PHOTO GALLERY
$('#myGallery').galleryView({
	panel_width: 600,
	panel_height: 400,
	filmstrip_position: 'top',
	filmstrip_size: 10,
	panel_scale: 'nocrop',
	pointer_size: 0,
	transition_interval: 0,
	panel_animation: 'fade',
	animate_pointer: false,
});
/////////////////////////////////////////////END PHOTO GALLERY



///////////////////////////////////////////HOMEPAGE HOVER
$("ul.gallery2 li").hover(function() { //On hover...
	var thumbOver = $(this).find("img").attr("src"); //Get image url and assign it to 'thumbOver'

	//Set a background image(thumbOver) on the <a> tag - Set position to bottom
	$(this).find("a.thumb").css({'background' : 'url(' + thumbOver + ') no-repeat top right'});

	//Animate the image to 0 opacity (fade it out)
	$(this).find("span").stop().fadeTo('normal', 0 , function() {
		$(this).hide() //Hide the image after fade
	});
} , function() { //on hover out...
	//Fade the image to full opacity 
	$(this).find("span").stop().fadeTo('normal', 1).show();
});
////////////////////////////////////////////END HOMEPAGE HOVER



///////////////////////////////////////////HOMEPAGE HOVER
$("ul.gallery li").hover(function() { //On hover...
	var thumbOver = $(this).find("img").attr("src"); //Get image url and assign it to 'thumbOver'

	//Set a background image(thumbOver) on the <a> tag - Set position to bottom
	$(this).find("a.thumb").css({'background' : 'url(' + thumbOver + ') no-repeat top right'});

	//Animate the image to 0 opacity (fade it out)
	$(this).find("span").stop().fadeTo('normal', 0 , function() {
		$(this).hide() //Hide the image after fade
	});
} , function() { //on hover out...
	//Fade the image to full opacity 
	$(this).find("span").stop().fadeTo('normal', 1).show();
});
////////////////////////////////////////////END HOMEPAGE HOVER


///////////////////////////////////////////CONTACT FORM
$(".alert").hover(function() {
		$(this).parent().find("div").fadeIn(500)
	}, function() {
		$(this).parent().find("div").fadeOut(500)
	});	
///////////////////////////////////////////END CONTACT FORM

});
