// PrettyPhoto (lightbox)
jQuery(document).ready(function($){
	$("a[rel^='prettyPhoto']").prettyPhoto();
});

// Portfolio thumbnail hover effect
jQuery(document).ready(function () {
	jQuery('#portfolio .block img').mouseover(function() {
		jQuery(this).stop().fadeTo(300, 0.6);
	});
	jQuery('#portfolio .block img').mouseout(function() {
		jQuery(this).stop().fadeTo(400, 1.0);
	});
});

// Homepage thumbnail hover effect
jQuery(document).ready(function () {
	jQuery('#home-port img').mouseover(function() {
		jQuery(this).stop().fadeTo(300, 0.6);
	});
	jQuery('#home-port img').mouseout(function() {
		jQuery(this).stop().fadeTo(400, 1.0);
	});
});

