$(document).ready(function(){
 	
	/* ===== Smooth scroll =====*/
	$('a.smooth-scroll').bind('click', function(){
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
			var $target = $(this.hash);
			$target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
			if ($target.length) {
				var targetOffset = $target.offset().top;
				$('html,body').animate({scrollTop: targetOffset}, 1000);
				return false;
			}
		}
	});
	/* ===== END Smooth scroll =====*/
	
	$(".imaginebox img, .imaginelogos img").css({opacity: 1.0});
	$(".imaginebox, .imaginelogos").hover(function() {
		$("img",this).stop().animate({ opacity: 0.7 }, "fast");
	},
	function() {
		$("img",this).stop().animate({ opacity: 1.0 }, "fast");
	});


});
