$(document).ready(function () {
	$('.TeaserMenu a').each(function (){
		$(this).hover(function () {

				//$('.TeaserContainer').fadeOut('slow');
				//$('div.'+$(this).attr('id')).fadeIn('fast');
				teaserLinkID = $(this).attr('id');
				$(this).css('backgroundImage', 'url(/templates/classic/p/img/design/tab_bg_active.png)');
				$('.TeaserMenu a').each(function () {
					if ($(this).attr('id') != teaserLinkID)
					{
						$(this).animate({
							width: '153px'
						},200, function () {
							$(this).css('backgroundImage', 'url(/templates/classic/p/img/design/tab_bg.png)');
						})
					}
					else
					{
						$(this).animate({
							width: '191px'
						},200, function () {
							$(this).css('backgroundImage', 'url(/templates/classic/p/img/design/tab_bg_active.png)');
						})
					}
				})
				
			
		})
	});
});	
