$(function(){
	var target = null; //'a[href=http://adam-belanger.blogspot.com/]';
	
	$(target).click(function(){
			var cp = $('<iframe src="http://www.crocodilefotos.com/intro.swf" style="width:550px;height:400px;position:fixed;"></iframe>');
			crocs();
			var timer = setInterval( crocs, 1200 );		
			function crocs(){
				var randx = Math.floor(Math.random()*( $(window).width() - 550 ));;
				var randy = Math.floor(Math.random()*( $(window).height() - 400 ));
				cp.clone().appendTo( $('body') ).css({'top':randy+'px','left':randx+'px'} );	
			}
		return false;
	});
});
