$(function () {
	
	$('.news > ul > li').addClass('inactive')
	$('.news ul li:first').eq(0).removeClass('inactive').addClass('active')
	$('.news ul li.inactive .description').hide()
	$('.news ul li.inactive h4.title').click(function () {
		$(this).next('.description').slideToggle('slow')
	})
	
	$("a[rel=video]").fancybox({
		overlayShow: true,
		frameWidth:640,
		frameHeight:360
	});
	
})
