$(document).ready(function(){	
	
	src = $('#actualTeasing a img').attr('src');
	
	$('<img />').attr('src', src+'podium.jpg' + '?random=' + (new Date()).getTime()).load(function(){
				$('#actualTeasing a img').replaceWith( $(this)  ); 
		});
	
	function loadMain (section , link)
	{
		
		$('<img />').attr('src', src+section+'.jpg' + '?random=' + (new Date()).getTime()).load(function(){
				$('#actualTeasing a').attr('href' , link);
				$('#actualTeasing a img').replaceWith( $(this)  ); 
		});
	}
	
	$('.teaserBtn').click(function(e)
	{
		e.preventDefault();	
		$('#testTeasing ul li.active').removeClass('active');
		$(this).parent().addClass('active');
		loadMain ( $(this).attr('id') ,   $(this).attr('href') );
	});
	
});
