$(document).ready(function(){
img2CtMakeBig();
$("ul.thumb #img1Ct").mouseover(img1CtMakeBig);
$("ul.thumb #img2Ct").mouseover(img2CtMakeBig);
$("ul.thumb #img3Ct").mouseover(img3CtMakeBig);
$("ul.thumb #img4Ct").mouseover(img4CtMakeBig);
$(".outerApp").mouseover(img2CtMakeBig);

function img1CtMakeBig(){ 
$("#img1Ct").css({'z-index' : '10'});
$("#img1Ct").animate({
			marginTop: '-110px',
			marginLeft: '-110px',
			top: '60px',
			left: '20%',
			width: '350px',
			height: '223px',
			padding: '5px'
		}, 200);
$("#img2Ct, #img3Ct, #img4Ct").css({'z-index' : '0'});
$("#img2Ct, #img3Ct, #img4Ct").animate({
			marginTop: '0',
			marginLeft: '0',
			top: '0',
			left: '0',
			width: '207px',
			height: '132px',
			padding: '5px'
		}, 100);
}
function img2CtMakeBig(){ 
$("#img2Ct").css({'z-index' : '10'});
$("#img2Ct").animate({
			marginTop: '-110px',
			marginLeft: '-110px',
			top: '60px',
			left: '20%',
			width: '350px',
			height: '223px',
			padding: '5px'
		}, 200);
$("#img1Ct, #img3Ct, #img4Ct").css({'z-index' : '0'});
$("#img1Ct, #img3Ct, #img4Ct").animate({
			marginTop: '0',
			marginLeft: '0',
			top: '0',
			left: '0',
			width: '207px',
			height: '132px',
			padding: '5px'
		}, 100);
}
function img3CtMakeBig(){ 
$("#img3Ct").css({'z-index' : '10'});
$("#img3Ct").animate({
			marginTop: '-110px',
			marginLeft: '-110px',
			top: '60px',
			left: '20%',
			width: '350px',
			height: '223px',
			padding: '5px'
		}, 200);
$("#img1Ct, #img2Ct, #img4Ct").css({'z-index' : '0'});
$("#img1Ct, #img2Ct, #img4Ct").animate({
			marginTop: '0',
			marginLeft: '0',
			top: '0',
			left: '0',
			width: '207px',
			height: '132px',
			padding: '5px'
		}, 100);
}
function img4CtMakeBig(){ 
$("#img4Ct").css({'z-index' : '10'});
$("#img4Ct").animate({
			marginTop: '-110px',
			marginLeft: '-110px',
			top: '60px',
			left: '20%',
			width: '350px',
			height: '223px',
			padding: '5px'
		}, 200);
$("#img1Ct, #img2Ct, #img3Ct").css({'z-index' : '0'});
$("#img1Ct, #img2Ct, #img3Ct").animate({
			marginTop: '0',
			marginLeft: '0',
			top: '0',
			left: '0',
			width: '207px',
			height: '132px',
			padding: '5px'
		}, 100);
}
});

