/*************************** Image Hover ***************************/

jQuery(document).ready(function(){
	jQuery(".overlay").hover(function() {
		jQuery(this).find("a img").stop().fadeTo('normal', 0.8);
	},
	function() {
		jQuery(this).find("a img").stop().fadeTo('normal', 1);
	});
});

jQuery(document).ready(function(){
	jQuery(".button, .Buttons, input[type='submit']").hover(function() {
		jQuery(this).stop().fadeTo('normal', 0.8);
	},
	function() {
		jQuery(this).stop().fadeTo('normal', 1);
	});
});


/*************************** Lightbox ***************************/

jQuery(document).ready(function(){

	jQuery("div.gallery-item .gallery-icon a").prepend('<span class="hover-image"></span>');
	jQuery("div.gallery-item .gallery-icon a").attr("rel", "prettyPhoto[gallery]");
	var galleryimgWidth = jQuery("div.gallery-item .gallery-icon img").width();
	var galleryimgHeight = jQuery("div.gallery-item .gallery-icon img").height();
	jQuery("div.gallery-item .gallery-icon .hover-image").css({"width": galleryimgWidth, "height": galleryimgHeight});
	jQuery("div.gallery-item .gallery-icon a").css({"width": galleryimgWidth});

	jQuery("a[rel^='prettyPhoto']").prettyPhoto({
		theme: 'pp_default',
		animationSpeed: 'fast'
	});

});
