$(document).ready(function(e) {
	$('#spotlights li').each(function(index, element) {
		iHtml = $(this).children('.spotlight-out').html();
		$(this).append('<div class="spotlight-clip"><div class="spotlight-over">' + iHtml + '</div></div>');
	});
	
	$('#spotlights li').mouseenter(function(e) {
		$(this).children('.spotlight-clip').stop(true, true).animate({height:178}, 300, 'easeOutExpo');
	}).mouseleave(function(e) {
		$(this).children('.spotlight-clip').stop(true, true).animate({height:0}, 300, 'easeInSine');
	}).click(function(e) {
		window.location = $(this).children('.spotlight-out').children('a').attr('href');
	});
});
