var pos = 'show';
	var bigWhoop = 0;

	var LeChuck = /[px]/ig;

	jQuery(document).ready(function(){
	
		jQuery('#footer-fancybox-right, #footer-fancybox-left').hide();
		jQuery("a.gallery").fancybox({
			'transitionIn'	:	'none',
			'transitionOut'	:	'none',
			'changeSpeed' : 1,
			'changeFade' : 'fast'
		});
		
	jQuery('#leftSideBar').animate({ marginLeft: '-0px' }, 400, function() {
		});
		
		jQuery('#access').css('z-index', '9990');

	 jQuery('#access li').mouseenter(function(e){

      	slidePane('hide');
    });
    
    jQuery('#access li').mouseleave(function(e){

      	slidePane('show');
    });

	function slidePane(pos) {
	
		if (pos == 'hide') { 
			jQuery('#leftSideBar').stop().animate({ marginLeft: '-385px' }, 400, function() {});
			
			
			
		} else {
			jQuery('#leftSideBar').stop().animate({ marginLeft: '-0px' }, 400, function() {});
			
			
		};
		
	};
		
		
	});
