$(document).ready(function() {
	$('#carroussel').innerfade({
	 	speed: '3000',
	 	timeout: '5000'
	});
	$('#header').hover(
		function(){
			$('#primary').fadeIn('slow', 
				function(){
					$('#primary').css('filter','progid:DXImageTransform.Microsoft.gradient(startColorstr=#95464646,endColorstr=#95464646)');
				}
		);
			$('#header p').fadeIn('slow');
		}, 
		function(){
			$('#primary').fadeOut('slow');
			$('#header p').fadeOut('slow');
		}
	);
	$('#footer select').change(function(){
			var address = $(this).attr('value');
			window.open(address);
		}
	);

});

