$(function(){
	$('.index_page_image img').css('width', '172px');
	$('.index_page_image img').css('height', '144px');

	$('.index_page_item').hover(function(){
		$(this).find('a').addClass('hover');
		$(this).find('img').stop().animate({width:"221px",height:"191px"}, 200);
	}, function(){
		$(this).find('a').removeClass('hover');
		$(this).find('img').stop().animate({width:"172px",height:"144px"}, 400);
	});
	$('.index_page_item').click(function(){
		self.location = $(this).find('a').attr('href');
	});
	$('.index_page_item').addClass('ph');
});