 function updateDimensions() {
 
  bodyWidth = $(document).width();
  
  if (bodyWidth < 1004) {
  	

   $('.collage_mask_image').css('left','-250px');
   $('.default_mask_image').css('left','-80px');
   
  }
  else {
  	
  	$('.collage_mask_image').css('left','0px');
  	$('.default_mask_image').css('left','0px');
  	
  }

  
};





$(document).ready(function() {
		
		$("#table_other").width ($("#table_other1").width());
		$("#table_home").width ($("#table_home1").width());
			 updateDimensions();
	});
$(window).resize(function() {
		
		
		$("#table_other").width ($("#table_other1").width());
		$("#table_home").width ($("#table_home1").width());
			
	});
	
	 
	 
	 