
	$(document).ready(function(){

         });



function photoReplace (url) {
	$('#circle').stop().fadeIn(500);
         loadPulse();
	url = url.replace('mid','norm');
	$('<img>').attr('src',url).load( function () {
            $('#mainimage').attr('src',url);
            $('#circle').stop().fadeOut(500);

         });
}

function loadPulse () {
	$('#circle').animate({top:'160px',
                               left:'315px',
                               width:'60px',
                               height:'60px',
                               MozBorderRadius:'30px 30px 30px 30px' ,
                               borderRadius:'30px 30px 30px 30px'
          		      },1000, function() {
				      $('#circle').animate({
                                                             top:'170px',
                               	      			    left:'325px',
                               				    width:'40px',
                               				    height:'40px'

          		      				    },1500,function() {loadPulse(); });
                                       });
}
