

function bulgeImage( theSlide, theWrapper )
{
	document.getElementById( theWrapper ).style.zIndex = 99; 
	document.getElementById( theSlide ).style.zIndex = 99; 
	
	
	$('#' + theSlide ).animate(  {
									marginTop: '-18px', /* The next 4 lines will vertically align this image */ 
									marginLeft: '-15px',
									top: '50%',
									left: '50%',
									width: '120px', /* Set new width */
									height: '140px', /* Set new height */
									padding: '0px'
								}, 200);

	$('#' + theSlide + "Link" ).animate(  {
									top: '125px'
								}, 200);




}
function unBulgeImage( theSlide, theWrapper )
{
	
	$('#' + theSlide ).animate(  {
									marginTop: '0px', /* The next 4 lines will vertically align this image */ 
									marginLeft: '0px',
									top: '0',
									left: '0',
									width: '92px', /* Set new width */
									height: '107px', /* Set new height */
									padding: '0px'
								}, 200);

	$('#' + theSlide + "Link" ).animate(  {
									top: '110'
								}, 200);

	
	document.getElementById( theWrapper ).style.zIndex = 0; 
	document.getElementById( theSlide ).style.zIndex = 0; 


}



