// JavaScript Document
 var $j = jQuery.noConflict()
 
 function collapseAll(url){
	  h = $j('#body').innerHeight();
	   $j('#body').animate({
		  opacity:0.0
	  }, 800, function() {
		  location.href = url;

	});
  }
    
  $j(function(){
			  
	  var $overElement;
	  
	  $j(".thumb-scroll").hover(function(){
		  overElement = $j(this).	children().eq(0);				  
		  $j(overElement).stop().animate({
			  marginTop: "-210px"
		  }, 400);
	  }, function() {
		  $j(overElement).stop().animate({
			  marginTop: 0
		  }, 400);
	  });
	  	  
  });
  
