// JavaScript Document
$(document).ready(function(){
	
	$('ul.sf-menu').superfish();
	//$(".sf-menu li").css("opacity",0.95);
	
		
		$('#picHolder').hover(
		function(){ $('#imageNav').fadeIn(); },
		function(){ $('#imageNav').fadeOut(); }
		
		);
		
		
	
	});
	
function getWidth (){
	
	var imgWidth = $(this).width();
	var imgHeight = $(this).height();
	
	if(imgWidth <= 467){
		
		$('#picHolder img').css('marginLeft', '110px');
		
		} else {
			
			$('#picHolder img').css('marginLeft', '0px');
			
			}
			
	if(imgHeight <= 467){
		
		$('#picHolder img').css('marginTop', '50px');
		
		} else {
			
			$('#picHolder img').css('marginTop', '0px');
			
			}	
	
	}	
