// JavaScript Document
$(document).ready(function()
{
	$("#news1Img").click(function(event)
	{
		event.preventDefault();
		$(this).hide("slow");
		$("#news1Desc").fadeIn("slow");
	});
	$("#news1Desc").click(function(event)
	{
		//event.preventDefault();
		$(this).fadeOut("slow");
		$("#news1Img").show("slow");
	});
	
	$("#news2Img").click(function(event)
	{
		event.preventDefault();
		$(this).hide("slow");
		$("#news2Desc").fadeIn("slow");
	});
	$("#news2Desc").click(function(event)
	{
		//event.preventDefault();
		$(this).fadeOut("slow");
		$("#news2Img").show("slow");
	});
	
	$("#news3Img").click(function(event)
	{
		event.preventDefault();
		$(this).hide("slow");
		$("#news3Desc").fadeIn("slow");
	});
	$("#news3Desc").click(function(event)
	{
		//event.preventDefault();
		$(this).fadeOut("slow");
		$("#news3Img").show("slow");
	});
	
	$("#news4Img").click(function(event)
	{
		event.preventDefault();
		$(this).hide("slow");
		$("#news4Desc").fadeIn("slow");
	});
	$("#news4Desc").click(function(event)
	{
		//event.preventDefault();
		$(this).fadeOut("slow");
		$("#news4Img").show("slow");
	});
	
	$("#news5Img").click(function(event)
	{
		event.preventDefault();
		$(this).hide("slow");
		$("#news5Desc").fadeIn("slow");
	});
	$("#news5Desc").click(function(event)
	{
		//event.preventDefault();
		$(this).fadeOut("slow");
		$("#news5Img").show("slow");
	});
	
	$("#news6Img").click(function(event)
	{
		event.preventDefault();
		$(this).hide("slow");
		$("#news6Desc").fadeIn("slow");
	});
	$("#news6Desc").click(function(event)
	{
		//event.preventDefault();
		$(this).fadeOut("slow");
		$("#news6Img").show("slow");
	});
});