$(document).ready(function(){

	// create the bigpic first item
	$('#latest #bigpic .desc').html($('#latest .article:first .content').html());
	$('#latest #bigpic').css('background-image', 'url(' + $('#latest .article:first .thumb').attr('src') + ')');
	$('#latest #bigpic').click(function(){
		document.location.href = $('#latest .article:first .content h3 a').attr('href');
	});
	
	// create the hover effect
	$('#latest .article .thumb').mouseover(function(){
		$('#latest .active').removeClass('active');
		$(this).parent().parent().addClass('active');
		$('#latest #bigpic .desc').html($('#latest .active .content').html());
		$('#latest #bigpic').css('background-image', 'url(' + $(this).attr('src') + ')');
		$('#latest #bigpic').click(function(){
			document.location.href = $('#latest .active .content h3 a').attr('href');
		});
	});

	$(function() {
	    $('a.lightbox').lightBox();
	});


});
