$(document).ready(function() {
			
	$("#slider").easySlider({
		auto: false,
		continuous: false,
		numeric: true
	});

    $('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	$('.gallerybox.slidedown').hover(function(){
	$(".cover", this).stop().animate({top:'100px'},{queue:false,duration:300});
	}, function() {
	$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
	});
	//GALLERY BOX LARGE
	$('.galleryboxlarge.slidedown').hover(function(){
	$(".cover", this).stop().animate({top:'100px'},{queue:false,duration:600});
	}, function() {
	$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
	});
	////GALLERY BOX
	$('.galleryboxlarge.peek').hover(function(){
	$(".cover", this).stop().animate({top:'100px'},{queue:false,duration:160});
	}, function() {
	$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
	});

	
});
