function checkwidth(){
		var width =  document.documentElement.clientWidth;

		if(width < 1024){
			$('#navigation').removeClass('navright');
			$('#navigation').addClass('navleft');
			$('#footer').removeClass('navright');
			$('#footer').addClass('navleft');
			
			
			} else {
		    $('#navigation').removeClass('navleft');
			$('#navigation').addClass('navright');
		    $('#footer').removeClass('navleft');
			$('#footer').addClass('navright');
			}
		}



$(document).ready(function(){


	// check the width of page for menu's on load	
	$(window).resize(function() {checkwidth();});
		
	// check the width of page for menu's on load	
	checkwidth();


	$(".project_tinted").hover(
	  function () {
	    $(this).find('img').css('display','none');
	    $(this).css('color','#999');
	    $(this).find('.project_short_heading').css('border-color','#999999');
	    
	  }, 
	  function () {
	    $(this).find('img').css('display','');
	    $(this).css('color','#333399');
	    $(this).find('.project_short_heading').css('border-color','#333399');
	
	  }
	);
	
	
	$(".project_links").hover(
	
	
	function(){
		var theimagetoshow = "#"+$(this).attr('id')+"_display";
	
		//alert(theimagetoshow);
/*
		$('.press_images').find('img').addClass('nodisplay');
		$(theimagetoshow).removeClass('nodisplay');
*/
		$('.press_images').find('img').hide();
		$(theimagetoshow).fadeIn('fast');
		/*$('.project_short_heading').addClass('project_line_hover');*/
		$(this).find('.project_short_heading').addClass('project_line_hover');
		
	},
	
	function(){
	// on mouse out
		//$('.project_short_heading').removeClass('project_line_hover');
		$(this).find('.project_short_heading').removeClass('project_line_hover');

	}
	
	)
	
});





