﻿$(document).ready(function(){
	setOver();
	anchorScroll();
});

function setOver(){
	$("img.overFade").mouseover(function(){
		$(this).stop();
		$(this).animate({opacity:"0"},200);
	});
	$("img.overFade").mouseout(function(){
		$(this).stop();
		$(this).animate({opacity:"1"},1000);
	});
}

function anchorScroll(){
	var id;
	$("a").click(function(e){
		id = $(this).attr("href");
		if(id.indexOf("#")==0){
			var y = $(id).offset().top;
			$('html,body').animate({scrollTop: y}, 700);
			return false;
		}
	});
}
