﻿jQuery(document).ready(function($){
		$(".link img").hover(function(){
			$(this).fadeTo("fast", 0.6);
		},function(){
			$(this).fadeTo("fast", 1.0);
		
		});
		$(".input input").hover(function(){
			$(this).fadeTo("fast", 0.6);
		},function(){
			$(this).fadeTo("fast", 1.0);
		
		});
		$("a[href*='#']").easingScroll({
			easing: "easeInQuad",
			duration: 700
		});
		$( '#left' ).scrollFollow( {
		speed: 1000,
		offset: 60,
		killSwitch: 'exampleLink',
		onText: 'Disable Follow',
		offText: 'Enable Follow'
		});
});

