/* olivebracnh js */

$(document).ready(function() {
	$('.moonme').click(function() {
		$.scrollTo( 0, 1000 );
	});
	
	$('nav ul li').click(function() {
		window.location = $(this).attr('href');
	});
	
	$('img[imghover]').hover(function() {
		$(this).attr('tmp', $(this).attr('src')).attr('src', $(this).attr('imghover')).attr('imghover', $(this).attr('tmp')).removeAttr('tmp');
	}).each(function() {
		$('<img />').attr('src', $(this).attr('imghover'));
	});
});
