$(function(){
$('ul.scroll_content a').click(function(){
		$.scrollTo( this.hash, 800, {offset: {top:-0} });		
		return false;
	});


$('.pic_area a').hover(function(){
					 
		var curRel = $(this).attr('rel');
		var curSrc = $('img', $(this)).attr('src');
		
		$('img', $(this)).attr('src', curRel);
		$(this).attr('rel', curSrc);
	
	},function() {
	
		var curRel = $(this).attr('rel');
		var curSrc = $('img', $(this)).attr('src');
		
		$('img', $(this)).attr('src', curRel);
		$(this).attr('rel', curSrc);
					 
					 });


});

