$(document).ready(function(){
    //var i=1;
    $('[name="surprise"]').each(function(j,img){        
        //new JumpObj(img,10,'vertical',1000+(80*i++));
          new JumpObj(img,10);
    }); 
    $('[name="adLogo"]').each(function(j,img){
        new JumpObj(img,10,'horizontal');
    });
    $('[lazy="true"]').lazyload({
    	placeholder:"images/ico/gray.jpg",
    	effect:"fadeIn",
    	threshold : 200 
    });	
    $("[name='mr_ad']").hover(function(){
    	$("[name='mr']").each(function(index){
    		$(this).addClass("none");
    	});
    	$(this).parent().parent().parent().children('div').removeClass("none");
    });
}); 

