$(document).ready(function(){
	$('.slider').click(function(){
	     window.location=$(this).find('a').attr('href');
	     return false;
	});

	$('.slider').hover(function(){
		$('.sliderBg', this).stop().animate({
			top:'410px'
		},{
			queue:false,
			duration:200
		});
		
	}, function() {
		$('.sliderBg', this).stop().animate({
			top:'0px'
		},{
			queue:false,
			duration:200
		});
	});

	 if ( !$.browser.msie ) {
		$('body.scale .logo').hover(function(){
			$(this).animate({marginLeft:'-20px'}, 'fast');
			$('.arrow').animate({opacity: 1}, 'fast');
			
		}, function() {
			$(this).animate({ marginLeft:'-25px' }, 'fast');
			$('.arrow').animate({opacity: 0}, 'fast');
		});
	}
});
