// JavaScript Document

$(document).ready(
	function(){
		$('#teaser-bg').css("opacity", "0.0");
		$('.box img').css("opacity", "0.3");
		$('.box img').fadeTo("slow", 0.5);
		$('.box').hover( 
			function() {
				$(this).find("img").fadeTo("fast", 1);
			},
			function() {
				$(this).find("img").fadeTo("fast", 0.5);
			}
		)
		
		$('#boxes').equalHeights();
		$('#content').equalHeights();
		
		
		$('#teaser-bg').fadeTo(3000, 1);
	
	
	}
)

