/*
	Scripts used for this theme.
	This file Requires jQuery to opperate.
*/

/* Gives Last Class to li's in Header and Footer */
 $(document).ready(function() {
   $("#headlinks li:last").addClass("last");
   $("#footlinks li:last").addClass("last");
   
   if($('#main-content').height() < 300){$('#main-content').css('height', 500)}
	
	//console.log(document.location)
	if(document.location.pathname == '/weddingssocial/request-for-proposal/'){
		$('#content .aside').css('height', $('#main-content').height() - 109 )
	}else if(document.location.pathname == '/accommodations/'){
		$('#content .aside').css('height', $('#main-content').height() - 222 )
	}else{
		$('#content .aside').css('height', $('#main-content').height() - 25 )
	}
		$('#blocks').css('height', $('#main-content').height() )


	$('.fancy').fancybox();
		
	
 });

