 // JavaScript Document
$(document).ready(function(){
	$('#menuTop a').hover(function(){
		$('span.l',this).css({'background-position':'left top'});
		$('span.c',this).css({'background-color':'#392f2c'});
		$('span.r',this).css({'background-position':'left bottom'});
		$(this).next('.sep').css({'color':'#e4dfc7'});
		$(this).prev('.sep').css({'color':'#e4dfc7'});
	},function(){
		$('span.l',this).css({'background-position':'left -40px'});
		$('span.c',this).css({'background-color':'transparent'});
		$('span.r',this).css({'background-position':'left -40px'});
		$(this).next('.sep').css({'color':'#392f2c'});
		$(this).prev('.sep').css({'color':'#392f2c'});
	});	
	updateContentHeight();
});

function updateContentHeight(){

var menuHeight = $('#menuLeft').innerHeight();
var contentHeight = $('#content').innerHeight();
//alert(menuHeight + ' '+contentHeight);
var newHeight = menuHeight-30;
if (contentHeight<newHeight) { 
	$('#content .bottom').css({'height':newHeight+'px'});
} else {
	$('#content .bottom').css({'height':contentHeight+'px'});
	
}
	
}


