/*
* Author:      Marco Kuiper (http://www.marcofolio.net/)
*/
google.load("jquery", "1.3.2");
google.load("jqueryui", "1.7.2");
google.setOnLoadCallback(function()
{

	/* Link nudge */
	$(".jquery_nudge .tiger a").hover(function(){
		$(this).stop().animate({ paddingLeft: '200px' }, 500);	
	}, function() {
		$(this).stop().animate({ paddingLeft: '0px' }, 500);
	});
	
	$(".jquery_nudge .easy a").hover(function(){
		$(this).stop().animate({ paddingLeft: '200px' }, 500);	
	}, function() {
		$(this).stop().animate({ paddingLeft: '0px' }, 500);
	});
	
	$(".jquery_nudge .publish a").hover(function(){
		$(this).stop().animate({ paddingLeft: '200px'}, 500);	
	}, function() {
		$(this).stop().animate({ paddingLeft: '0px' }, 500);
	});
	
	$(".jquery_nudge .heartbeats a").hover(function(){
		$(this).stop().animate({ paddingLeft: '200px' }, 500);	
	}, function() {
		$(this).stop().animate({ paddingLeft: '0px' }, 500);
	});
	
	/* Accordion */
	$(".jquery_accordion").accordion({ header: 'a' });

});
