$(document).ready(function()
{
	$('.subscribe-box').hide();
	$('ul li:first-child').addClass('first-child');
	$('ul li:last-child').addClass('last-child');
	$('ul li:first-child').addClass('first-child');	
	$('.photo-gallery li:first-child').addClass('first-child');
	$('.photo-gallery ul li:nth-child(4n)').addClass('fourth-child');	
	$('.photo-gallery ul li:nth-child(5n)').addClass('fifth-child');
	$('#fanlist').click(function()
	{
		$('.subscribe-box').slideDown();
	});
});
