/* DIVS EQUAL HEIGHTS */

function sameHeights() {

	if( jQuery('#content').height() < jQuery('#sidebar').height() ){
		jQuery('#content').css('height', jQuery('#sidebar').height()+'px')
	}

}

jQuery(document).ready(function(){
	
	/* LOGO */
	
	jQuery("#header .inner .logo h1 a").hover(
	function() {
		jQuery(this).animate({"opacity": "0"}, "fast");
	},
	function() {
		jQuery(this).animate({"opacity": "1"}, "fast");
	});
	
	/* FADE IMG */
	
	jQuery(function() {
		jQuery(".fade img").css("opacity","1.0");
		jQuery(".fade img").hover(function () {
			jQuery(this).stop().animate({
				opacity:0.5
			}, "fast");
		},
		function () {
			jQuery(this).stop().animate({
				opacity: 1.0
			}, "normal");
		});
	});
	
	sameHeights();    
		 
});
