GA.Start = {

	init : function(){

		$("ul.thumb li").hover(function(){
			
				$(this).css({'z-index' : '10'});
				
				$(this).find('img').addClass("hover").stop().animate({
						marginTop: '-10px',
						marginLeft: '-10px', 
						width: '191px', 
						height: '132px',
						padding: '0px' 
				}, 200,null,function(e){
					$(this).attr('src','img/'+ $(this).attr('id') +'.png');
				});
			},
			function(){

				$(this).css({'z-index' : '0'});
				
				$(this).find('img').removeClass("hover").stop().animate({
					marginTop: '0',
					marginLeft: '0',
					width: '171px', 
					height: '119px', 
					padding: '0px'
				}, 200,null,function(){
					$(this).attr('src','img/'+$(this).attr('id')+'bn.png');
				});
			}
		);
	}
};

$(function(){
	GA.Start.init();
});
