	// Register script action
	
  $(document).ready(function(){

	// Swap pics on mouseover

		$('.swapPics1').hover(
		function(){
			$('#imgLink1').attr('src', 'dolphinm/img/Link-theOfficeAglow.jpg').addClass('hover');
	    $('#linkDesc1').fadeIn('slow');
		},
		function(){	
		  $('#imgLink1').attr('src', 'dolphinm/img/Link-theOffice.jpg').addClass('hover');
	    $('#linkDesc1').fadeOut('fast');
		}); 

		$('.swapPics2').hover(
		function(){
			$('#imgLink2').attr('src', 'dolphinm/img/Link-theGalleryAglow.jpg').addClass('hover');
	    $('#linkDesc2').fadeIn('slow');
		},
		function(){	
		  $('#imgLink2').attr('src', 'dolphinm/img/Link-theGallery.jpg').addClass('hover');
	    $('#linkDesc2').fadeOut('fast');
		}); 

		$('.swapPics3').hover(
		function(){
			$('#imgLink3').attr('src', 'dolphinm/img/Link-theBlogAglow.jpg').addClass('hover');
	    $('#linkDesc3').fadeIn('slow');
		},
		function(){	
		  $('#imgLink3').attr('src', 'dolphinm/img/Link-theBlog.jpg').addClass('hover');
	    $('#linkDesc3').fadeOut('fast');
		}); 
});

