$(document).ready(function(){
	//var myWidth;
	$('.product').fadeIn(1000, function(){
		/*myWidth = $('.product img').width();
		$('.product').animate({
				width: myWidth
			}, 500
		);*/
		//$('.product').width(myWidth);
		$('.st_container').fadeIn(1000, function(){
			var myHeight = $('.st_container').height();
			if(myHeight > $('.product').height()){
				$('.product').height(myHeight)
			}
			pos = $('.product').position();
			if(pos.left > 26){
				move_left = pos.left - 26;
			}else{
				move_left = 0;
			}
			$('.product').animate({
				left: '-='+move_left
			}, 1000, function() {
				pos = $('.product').position();
			});
			$('.st_container').animate({
				width: '+=200'
			}, 1000, function() {
				// Animation complete.
				$('.st_container h3, .st_container p').each(function(){
					$(this).fadeIn(500);
				});
			});
		});
	});
	
	
});
