$(document).ready(function() {
	
	$('li.my-email').html('<a rel="email" itemprop="url" class="url" href="mailto:dan@theblahman.net?subject=Hello there Daniel">dan@theblahman.net</a>');
	
	$('#sprout')
		.mouseover(function() {
			$(this).stop().animate({ bottom: "31" }, 'slow', 'swing' );
		})
		.mouseout(function() {
			$(this).stop().animate({ bottom: "4" }, 100 );
		});
		
	$('a.inline-a').click(function() {
		$.scrollTo( $(this).attr('href'), 800);
		
		return false;
	});
	
	// Nice idea Rogie... =)
	$('#main-quote').dblclick(function() {
		document.location = '/wp-admin';
	});
	
});