// JavaScript Document


$(document).ready(function(){
	
	 $(document).pngFix(); 
	
	var mainHeight = $('#mainColumn').height(); //727 
	var sideHeight = $('#sideColumn').height(); //400 difference of 327
	var logoHeight = $('.logo').height();
	
	//If main is taller than sidebar and logo height
	 if (mainHeight > sideHeight+327) {
		$('#sideColumn').height(mainHeight - 327);
	// if side and logo is bigger than main column  	
	} else  if (mainHeight < sideHeight+327) {
		$('#mainColumn').height(sideHeight + 327);	
	}
	
	//Dropdowns
	$(".menu li").hover(function () {
		$(this).addClass("active");
    	}, function () {
		$(this).removeClass("active");
	});
	
});




