$(function()
{
	var num = 0;
	
	var a = $('#wrapper .block')
	
	
	a.each(function()
	{
		var name = $(this).attr("class");
		if(! name.match('no_animation'))
		{
			num++;
			$(this).css('visibility','visible');
			$(this).css('display',"none").delay(100*num).fadeTo("slow", 1);
		}
	});
	
	
	
	num += 2;
	var b = $('.open_a');
	b.each(function()
	{
		//num++;
		$(this).css('visibility','visible');
		$(this).css('display',"none").delay(100*num).fadeTo("slow", 1).fadeOut(1000).fadeIn(1500);
	
	});
	
	
	
	var str = $(location).attr('href');
	if(str.match('af_product_movie'))
	{
		setTimeout( function()
		{
				var Hash = $('#af_product_movie');
				var HashOffset = $(Hash).offset().top;
				
				$("html,body").animate({
					scrollTop: HashOffset
				}, 1000);
				
		}, 2000);
	}
	
	
});


