$(function(){
	$('.imageContainer').cycle({ //variables for jQuery photo gallery
		before: onAfter,
		pager: '#photoNav',
		pause: 1
		});
	
function onAfter() { 
	var tempVar = $(this).children('img').attr('alt');
	var tempHref = $(this).attr('href');
	$('#photoGallery p').html('<a href="'+ tempHref+'">'+tempVar+'</a>');
}
	
$('#photoNav a').click(function(){
							  $('.imageContainer').cycle('stop');
							  });	
});