/*
* 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 ul li a").hover(function(){
		$(this).stop().animate({ paddingLeft: '10px', backgroundColor: '#fffff', color : '#000', opacity:0.9}, 500);
            	
	}, function() {
//	$(this).remove(css);
//	       $(this).removeAttr("class");
//	       $(this).attr("class", "");
		$(this).stop().animate({ paddingLeft: '5px', color : '#00000',opacity:0.5}, 500);

//	$('this')..backgroundColor='#ff00ff';	
	});
	
	/* Accordion */
	$(".jquery_accordion").accordion({ header: 'a' });

});

