$(document).ready(function(){

	//CONTENT SLIDER
	var height = $('#slider').height();
	$('#slider').css({height:100});
	$('#slider').after('<p id="slider-controls"><a class="closed" href="#" title="Reveal full text">Read More</a></p>');
	
	$('#slider-controls a').click(function() {
		if($('#slider').height() == 100){
			$('#slider').animate({height: height}, 800, 'linear', function(){location = '#content';});
			$('#slider-controls a').html('Show less').removeClass('closed').addClass('open').attr('title','Hide full text');
		}else{
			location = '#main';
			$('#slider').animate({height: 100}, 800);
			$('#slider-controls a').html('Read More').removeClass('open').addClass('closed').attr('title','Reveal full text');
		}
        return false;		
	});
	
	
	//PRODUCT HOVER
	$('.product .photo img').fadeTo(0,0.75);
	
	$('.home .product').hover(function(){
		$(this).find('.photo img').stop().fadeTo(400,1).animate({paddingTop:'0px', paddingBottom:'10px'},{queue:false,duration:400});
	}, function(){
		$(this).find('.photo img').stop().fadeTo(600,0.75).animate({paddingTop:'10px', paddingBottom:'0px'},{queue:false,duration:600});
	});
	
	$('#sidebar .photo img').css({position:'relative', left:'10px'});
	$('#sidebar .product').hover(function(){
		$(this).find('.photo img').stop().fadeTo(400,1).animate({left:'0px'},{queue:false,duration:400});
	}, function(){
		$(this).find('.photo img').stop().fadeTo(800,0.75).animate({left:'10px'},{queue:false,duration:600});
	});	
	
});