// JavaScript Document 
$(document).ready(function(){ 
						   document.getElementById("tab1_750px").className = "active"; 
						   
						   $("#tab1_view_footer_750px").show(); 
						   $("#tab2_view_footer_750px").hide(); 
						   $("#tab3_view_footer_750px").hide(); 
						   $("#tab4_view_footer_750px").hide(); 
						   $("#tab5_view_footer_750px").hide(); 
						   $("#tab6_view_footer_750px").hide(); 
						   $("#tab1_750px").click(function () { 
															$("#tab1_view_footer_750px").show(); 
															$("#tab2_view_footer_750px").hide(); 
															$("#tab3_view_footer_750px").hide(); 
															$("#tab4_view_footer_750px").hide(); 
															$("#tab5_view_footer_750px").hide(); 
															$("#tab6_view_footer_750px").hide(); }) 
						   $("#tab2_750px").click(function () { 
															$("#tab2_view_footer_750px").show(); 
															$("#tab1_view_footer_750px").hide(); 
															$("#tab3_view_footer_750px").hide(); 
															$("#tab4_view_footer_750px").hide(); 
															$("#tab5_view_footer_750px").hide(); 
															$("#tab6_view_footer_750px").hide(); })
						   $("#tab3_750px").click(function () { 
															$("#tab3_view_footer_750px").show(); 
															$("#tab1_view_footer_750px").hide(); 
															$("#tab2_view_footer_750px").hide(); 
															$("#tab4_view_footer_750px").hide(); 
															$("#tab5_view_footer_750px").hide(); 
															$("#tab6_view_footer_750px").hide(); }) 
						   $("#tab4_750px").click(function () { 
															$("#tab4_view_footer_750px").show(); 
															$("#tab1_view_footer_750px").hide(); 
															$("#tab2_view_footer_750px").hide(); 
															$("#tab3_view_footer_750px").hide(); 
															$("#tab5_view_footer_750px").hide(); 
															$("#tab6_view_footer_750px").hide(); }) 
						   $("#tab5_750px").click(function () { 
															$("#tab5_view_footer_750px").show(); 
															$("#tab1_view_footer_750px").hide(); 
															$("#tab2_view_footer_750px").hide(); 
															$("#tab3_view_footer_750px").hide(); 
															$("#tab4_view_footer_750px").hide(); 
															$("#tab6_view_footer_750px").hide(); }) 
						   $("#tab6_750px").click(function () { 
															$("#tab6_view_footer_750px").show(); 
															$("#tab1_view_footer_750px").hide(); 
															$("#tab2_view_footer_750px").hide(); 
															$("#tab3_view_footer_750px").hide(); 
															$("#tab4_view_footer_750px").hide(); 
															$("#tab5_view_footer_750px").hide(); }) 
						   });
