// JavaScript Document
$(document).ready(function() {

var asideContentHeight = $('#asideContent').outerHeight() + 80,
	aside = $('#image'),
	content = $('#mainContainer'),
	contentHeight = content.outerHeight()
	
	if(asideContentHeight > contentHeight){
		content.height(asideContentHeight - 60);
		aside.height(asideContentHeight);
		$('#outer').css({'top':'40%'});
		}
	
	$("a[rel^='prettyPhoto']").prettyPhoto({
		social_tools: '',
		show_title: false
		});
		$("a[rel^='prettyPhotoSlide']").prettyPhoto({
		social_tools: '',
		show_title: false,
		slideshow:5000, 
		autoplay_slideshow:true
		});
		
		

});

