// JavaScript Document

jQuery(document).ready(function () {
	jQuery('.portfolio img').mouseover(function() {
		jQuery(this).stop().fadeTo(300, 0.5);
	});
	jQuery('.portfolio img').mouseout(function() {
		jQuery(this).stop().fadeTo(400, 1.0);
	});
});

// PrettyPhoto (lightbox)
jQuery(document).ready(function($){
	$("a[rel^='prettyPhoto']").prettyPhoto();
});

// Innerfade setup
jQuery(document).ready( function(){
	jQuery('.gallery').innerfade({
		animationtype: 'fade',
		speed: 'normal',
		timeout: 6000,
		type: 'random_start',
		containerheight: 'auto'
	});

});
