//jQuery.noConflict();
jQuery(document).ready(function(){

	// activates the lightbox page, if you are using a dark color scheme use another theme parameter
	lightbox("a[rel^='prettyPhoto'], a[rel^='lightbox']");
});


function lightbox($elements)
{
jQuery($elements).prettyPhoto({
		theme: 'facebook',slideshow:5000, autoplay_slideshow:true /* light_rounded / dark_rounded / light_square / dark_square */																
});
    

}(jQuery);

/***************************************************
	     ZOOM PORTFOLIO HOVER
***************************************************/
$(document).ready(function(){
	$(".gallery a").hover(function(){
		$(this).find("img").stop().animate({
			opacity:0.4
		}, 400);
	}, function() {
		$(this).find("img").stop().animate({
			opacity:1
		}, 400);
	});
});
