// PrettyPhoto (lightbox)
jQuery(document).ready(function($){
	//$("a[rel^='prettyPhoto']").prettyPhoto();
	$("a[rel^='prettyPhoto']").prettyPhoto({
		show_title: false,
		theme: 'light_rounded',
		social_tools: ''
	});
});

// Portfolio thumbnail hover effect
jQuery(document).ready(function () {
	jQuery('#gallery .photo img').mouseover(function() {
		jQuery(this).stop().fadeTo(200, 0.5);
	});
	jQuery('#gallery .photo img').mouseout(function() {
		jQuery(this).stop().fadeTo(400, 1.0);
	});
});
