/* Author: 

	Tamara
	Monster Graphics

*/

jQuery(document).ready(function() {
								
								
	//  nav tab animation ------------------------------------------------------	  
	var navDuration = 150; //time in miliseconds
	var navJumpHeight = "1px";

	$('#nav li').hover(function() {
		$(this).animate({ top : "-="+navJumpHeight }, navDuration);            
	}, function() {
		$(this).animate({ top : "0" }, navDuration);
	});
	
	$('#featured-sml li').hover(function() {
		$(this).animate({ top : "-="+navJumpHeight }, navDuration);            
	}, function() {
		$(this).animate({ top : "0" }, navDuration);
	});
	
	//  clickable box ------------------------------------------------------	
	$(".featured li").click(function(){
		window.location=$(this).find("a").attr("href");return false;
	});
	
	$(".featured-sml li").click(function(){
		window.location=$(this).find("a").attr("href");return false;
	});

	//  flash banner ------------------------------------------------------	  
	swfobject.registerObject("header", "8.0.0");
	
	//  validation ------------------------------------------------------	  
	
	$("#general-contact").validationEngine();
	
	//  fancybox ------------------------------------------------------	  
			
	$("#map").fancybox({
		'width': 640,
		'height': 380, 
		'autoScale'		: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'type'			: 'iframe'
	});
	
	$(".photo").fancybox({
		'titleShow'		: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
	
	
});






















