	
	$(document).ready(function() {
		
	
		$('#newsboxcontainer div').hide();
		$('#newsbox1').slideDown("slow");
		$('#header1').css("backgroundImage", "url(/_images/box2.png)");
		
		var flip = 0;
		

		
		$("#slider").click(function() {
			if(flip++ % 2 == 0)
			{	
				$(this).next('#disapear').animate({height: 'show'}, 'fast');
			}
			else
			{
				$(this).next('#disapear').animate({height: 'hide'}, 'fast');
			}
		});
		
		
		$(".selectbox").click(function(){
			
			var id = this.getAttribute("id");
			if(id == "one")
			{	
			
				$('#newsboxcontainer div').hide("fast");
				$('#newsbox1').slideDown("fast");
				$('.selectbox h3').css("backgroundImage", "url(/_images/box.png)");
				$('#header1').css("backgroundImage", "url(/_images/box2.png)");
				
			}
			if(id == "two")
			{	
				$('#newsboxcontainer div').hide("fast");
				$('#newsbox2').slideDown("fast");
				$('.selectbox h3').css("backgroundImage", "url(/_images/box.png)");
				$('#header2').css("backgroundImage", "url(/_images/box2.png)");
			}
			if(id == "three")
			{	
				$('#newsboxcontainer div').hide("fast");
				$('#newsbox3').slideDown("fast");
				$('.selectbox h3').css("backgroundImage", "url(/_images/box.png)");
				$('#header3').css("backgroundImage", "url(/_images/box2.png)");
			}
		});
	});