// JavaScript Document

$(document).ready(function() {
    
	$('#showworkingmap').click(
		function() { $('#workingmap').slideToggle(); }
	);
	
	$('.slideshow').cycle({ fx: 'fade', pager: '#nav' });
	$('#quick UL LI').hover(
		function() { $("UL", this).fadeIn('fast'); },
		function() { $("UL", this).fadeOut('fast'); }
	);
	$('#quick2 UL LI').hover(
		function() { $("UL", this).fadeIn('fast'); },
		function() { $("UL", this).fadeOut('fast'); }
	);
	$('#quick3 UL LI').hover(
		function() { $("UL", this).fadeIn('fast'); },
		function() { $("UL", this).fadeOut('fast'); }
	);
	$('#services TD DIV.panel-on').animate({width:'0px', marginLeft:'228px'},350);
	$('#services TD').hover(
		function() { $("DIV.panel-on", this).animate({width:'228px', marginLeft:'0px'},350); },
		function() { $("DIV.panel-on", this).animate({width:'0px', marginLeft:'228px'},350); }
	);
	$('#partners #hide-staff').hide();
	$("a[rel^='modal']").fancybox({'hideOnContentClick': true, 'padding':0, 'autoDimensions': false, 'width':500, 'height':500, 'overlayColor':'#000', 'overlayOpacity':0.5, 'showNavArrows':true});
});
