$(document).ready(function(){
	
	// Prepare Document
	
	
	// designate a clean Google Map for Fancyboxes
	var mapIt = function(elementID) {

	    var url, title;
	    switch(elementID) {
	        case 'mwprsMap':
	            url = 'http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=20.+s.+park+st.+suite+360+madison,+wi+53715+Midwest+Plastic&amp;sll=42.929814,-88.827553&amp;sspn=0.011438,0.027874&amp;ie=UTF8&amp;hq=Midwest+Plastic&amp;hnear=20+S+Park+St+%23360,+Madison,+WI+53715&amp;cid=7755729629728548604&amp;iwloc=A&amp;ll=43.067238,-89.40183&amp;spn=0.006295,0.006295&amp;output=embed';
	            break;
	        
	        case 'saMap':
	            url = 'http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=35+Prairie+Ave,+Prairie+du+Sac,+WI+53578+Surgical+Associates&amp;sll=43.067238,-89.40183&amp;sspn=0.011412,0.027874&amp;ie=UTF8&amp;hq=Surgical+Associates&amp;hnear=35+Prairie+Ave,+Prairie+du+Sac,+WI+53578&amp;cid=14421492166786381476&amp;iwloc=A&amp;ll=43.282553,-89.719433&amp;spn=0.006295,0.006295&amp;output=embed';
	            break;
	        
	        case 'fortMap':
	            url = 'http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=611+Sherman+Avenue+East+Fort+Atkinson,+WI+53538+Fort+Healthcare&amp;sll=42.930002,-88.825815&amp;sspn=0.011045,0.027874&amp;g=611+Sherman+Avenue+East+Fort+Atkinson,+WI+53538&amp;ie=UTF8&amp;hq=Fort+Healthcare&amp;hnear=611+Sherman+Ave+E,+Fort+Atkinson,+WI+53538&amp;cid=5782331921473041031&amp;ll=42.929814,-88.827553&amp;spn=0.011438,0.027874&amp;iwloc=A&amp;output=embed';
	            break;
	            
	        default:
	            url = 'http://www.mwprs.com';
	    }
	    
	    $('a#' + elementID).fancybox({
				'width'				: '85%',
				'height'			: '90%',
		        'autoScale'     	: false,
				'type'				: 'iframe',
				'hideOnContentClick': true,
				'overlayShow'		: false,
				'hideOnContentClick': true,
				'hideOnOverlayClick': true,
				'overlayShow'       : true,
				'overlayOpacity'    : 0.3,
				'href'              : url
			});
	}
	
	// FancyBox for bio images
	if ( $('a.fancybox').length > 0 ) {
		$('a.fancybox').fancybox({
			'hideOnContentClick': true,
			'overlayShow'		: false,
			'margin'			: 30,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic'
		});
	}
	
	// FancyBox for Google Maps
	if ( $('a.googleMap').length > 0 ) {
	
	    $('a.googleMap').each( function() {
	        var elementID = $(this).attr('id');
	        mapIt(elementID);
	    });
	}
	
	// Superfish Menu
	 $(".nav").superfish({ animation : { opacity:"show",height:"show"} }); 
	
	// External Links
	$('a.link').click(function(){
		window.open(this.href);
		return false;
	});
	
});
