// bind to all links
$(document).ready(function(){
	$('#top').find('a').mouseover(function(){ $(this).effect('pulsate', {times: 1}, 300); }) ;
	$('#top').find('.highlight').ready(function(){ $(this).effect('shake', {times: 3} , 2000); } ) ;
});

