$(document).ready(function(){

	// jQuery Scroller

	$('#scroller').easySlider({
		continuous: true,
		auto:       true,
		pause:          4000,
		speed:1000,
		prevId: 'scroll-prev',
		nextId: 'scroll-next'
	});
	
	
	// Custom magnify icon fades
	
	$('a.lightbox').hover(function(){
		$('.scroll-mag').stop().animate({
			'opacity': 1
		}, 700);
	}, function(){
		$('.scroll-mag').stop().animate({
			'opacity': 0
		}, 700);
	});
	
	$('a.scroll-mag').hover(function(){
		$('.scroll-mag').stop().animate({
			'opacity': 1
		}, 700);
	}, function(){
		$('.scroll-mag').stop().animate({
			'opacity': 0
		}, 700);
	});
	

	
});

