$(document).ready(function() {
	
	var sideBarHeight = $('#side').outerHeight();
	var contentHeight = $('#content').outerHeight();
	
	if (sideBarHeight > contentHeight) {
		$('#content').css('height', sideBarHeight - 22);
	}
	
	/*
	$('.hoursAdvance').click(function() {
		var hours = $('div.hours img');
		var currentMargin = $(hours).css('margin-top');
		var currentMargin = currentMargin.replace('px', '');
		
		var newMargin = currentMargin - 25;
		$(hours).stop().animate({ marginTop: newMargin + 'px' }, 500);
	});
	*/
});