
$(document).ready(function(){

    $(".top_pick").each(function(){
	var size = 120;
	var $that = $(this);
	var $next = $that.next();
	return;
	$(this).find("img:eq(0)").hover(function(){
	    $that.css({"zIndex":10});
	    if($that.hasClass("break")){
		$that.css({marginLeft:"-10px"});
	    } else {
		$that.css({"marginLeft":"20px"});
	    }
	    $that.css({"marginTop":"10px"});
	    $(this).width(size + 30).height(size + 30);
	    $that.width(size + 30).height(size + 30);
	},function(){
	    $that.css({"zIndex":0});
	    if($that.hasClass("break")){
		$that.css({"marginLeft":"0px"});
	    } else {
		$that.css({"marginLeft":"30px"});
	    }
	    $that.css({"marginTop":"20px"});
	    $(this).width(size).height(size);
	    $that.width(size).height(size);
	});
    });
});