jQuery(document).ready(function($) {
	$('.teaser li span').css('right', '-222px');
	$('.teaser li span').css('bottom', '180px');
	$('.teaser li span').css('font-size', '120%');
	$('.teaser li span').css('color', '#333333');
	
	$('.teaser li').mouseenter(function () {
		$(this).children('a').children('img').animate({left:'-250px'}, 350);
		$(this).children('a').children('span').animate({right:'-50px'}, 350);
	}).mouseleave(function () {
		$(this).children('a').children('img').animate({left:'0px'}, 500);
		$(this).children('a').children('span').animate({right:'-323px'}, 500);
	});
});
