$(document).ready(function(){
		$('.productbox').each(function () {
			$('.loader', this).stop().animate({
     		 opacity : 0,});
    $('<div class="loader" />').css('opacity', 0).prependTo(this);
  }).hover(function () {
    $('.productbox', this).stop().animate({
      marginLeft :0
    }, 250);
    
    $('img', this).stop().animate({
      opacity : 1,
	  height : 190,
	  width : 190,
	  top:-5,
	  left:-5
    });
  }, function () {
    $('img', this).stop().animate({
      opacity : 0.9,
	  height : 180,
	  width : 180,
	  top:0,
	  left:0
    });
  }).find('img').css('marginLeft', 0);
	//Full Caption Sliding (Hidden to Visible)
		$('.productbox.captionfull').hover(function(){
			$(".cover", this).stop().animate({top:'150px'},{queue:false,duration:100});
		}, function() {
			$(".cover", this).stop().animate({top:'180px'},{queue:false,duration:100});
		});
});
