/**
 * @author Maciej Iwanowski
 * @copyright Glass Partnership 2007
 */
$(function() {
	$("#latest-news ul").css('display', 'none');
	$("#latest-news h2 a").click(function(){
		toggleFront();
	})
});

function toggleFront() {
	$("#whatever").hide('slow');
		$("#latest-news ul").show('slow');
		$("#hell h2").css('background', 'transparent url(/ex/images/homepage-message-arrow-righ.gif) no-repeat scroll right center')
		$("#latest-news h2").css('background', 'transparent url(/ex/images/hell-arrow-inactive-bottom.gif) no-repeat scroll right center')
		$("#latest-news h2 a").unbind();
		$("#latest-news h2 a").click(function() {
			$("#latest-news ul").hide('slow');
			$("#hell h2").css('background', 'transparent url(/ex/images/homepage-message-arrow-down.gif) no-repeat scroll right center')
			$("#latest-news h2").css('background', 'transparent url(/ex/images/hell-arrow-active-bottom.gif) no-repeat scroll right center')
			$("#whatever").show('slow');
			$("#latest-news h2 a").unbind();
			$("#latest-news h2 a").click(toggleFront);
		})
}
