$(document).ready(function(){

	$('#footer .window').click(function(){
			
			$('#footer .window').css('color', '#666');
			$(this).css('color', 'purple');

			
			$('#overlay').fadeIn();
			
			var id = $(this).attr("id");
			var dataString = "id=" + id;
		  
		   $.ajax({
			type: "POST",
			url: "strap/window.php",
			data: dataString,
			cache: false,
			success:function(html){
			
			$("#holder_strap").html(html);
			
			}
										 
		 });
			
			
		
	});
	
		$('#news-tab .window').click(function(){
			
			$('#news-tab .window').css('color', 'yellow');
			

			
			$('#overlay').fadeIn();
			
			var id = $(this).attr("id");
			var dataString = "id=" + id;
		  
		   $.ajax({
			type: "POST",
			url: "strap/window.php",
			data: dataString,
			cache: false,
			success:function(html){
			
			$("#holder_strap").html(html);
			
			}
										 
		 });
			
			
		
	});
	


});
