$(document).ready(function(){

 $('img').removeAttr('title');

	$('a.scroll, a.goup').click(function(){
		$('html, body').animate({ 
			scrollTop: $($(this).attr("href"))
			.offset().top }, 600);
		return false;
	});
	
/*	$("img").lazyload({ 
  placeholder : "http://www.davidsalvatori.com/my-stuff/wp-content/themes/david-black-new/images/load-img.jpg",
    effect : "fadeIn"
});

$('img').fadeIn(2000);  */

	$('a.goto').click(function(){
	
		var paneTarget = $('.content');
		var target = paneTarget.find($(this).attr("title"));
		
 		paneTarget.scrollTo( target, 500, {axis:'x'} );
 		
	});

});



