// JavaScript Document

$(document).ready(function(){	
						   
	//click on camera's heading, slide down					   
	$("#camera_heading").click(function(){
		$("#alerts").animate({height: '26px'}, {queue: true, duration: 1000});	
		$("#traffic_camera").animate({height: '179px'}, {queue: true, duration: 1000});
		
								
	});
	
	//click on the alerts heading, slide up
	$("#alerts_heading").click(function(){
		$("#alerts").animate({height: '179px'}, {queue: true, duration: 1000});	
		$("#traffic_camera").animate({height: '26px'}, {queue: true, duration: 1000});
		
											
	});
	
	//click on the prices heading
	$("#prices_heading").click(function(){
		window.open('http://www.lehighvalleytraffic.com/gas_pa/', '_blank'); 
											
	});
	
	
	//get the current alerts for traffic from cache
	 $.ajax({
	   type: "POST",
	   url: "ajax/alerts.php",
	   success: function(html){
		 $("#alerts_content").html(html);
	   }
	 });

	
});



