$(document).ready(function(){
		
		
		
		/* LINKS OUTLINE NONE IE */
		$("a").focus(function() {
  			$(this).blur();
		});
		
		/* opens links in a new window */
		$('a[rel=external]').click(function(){
			window.open(this.href); 
			return false;
  		});
  		
  		
		$('body').addClass('heure');
		$('a#navlundi').click(function(){
			$('body').removeClass('heure');
			$('body').removeClass('noctambules');
			$('body').removeClass('vendredi');
			$('body').addClass('lundi');
			return true;
  		});
  		$('a#navheure').click(function(){
			$('body').removeClass('lundi');
			$('body').removeClass('noctambules');
			$('body').removeClass('vendredi');
			$('body').addClass('heure');
			return true;
  		});
  		$('a#navnoctambules').click(function(){
			$('body').removeClass('heure');
			$('body').removeClass('lundi');
			$('body').removeClass('vendredi');
			$('body').addClass('noctambules');
			return true;
  		});
  		$('a#navvendredi').click(function(){
			$('body').removeClass('heure');
			$('body').removeClass('noctambules');
			$('body').removeClass('lundi');
			$('body').addClass('vendredi');
			return true;
  		});

		
		$("a[href=#]").attr("href", "javascript:void(0);");
		
		
		/* Ativando o jQuery lightBox plugin */	
		$('#gallery a').lightBox({fixedNavigation:true});
    	$('#gallery a:gt(0)').hide();
		$('a.zoom').lightBox();

		/* Swap */
		$.swapImage(".swapImage");
		
		/* cycle */
		$('#slideshow').cycle({
			fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		});



// The end of our jQuery function	
});
    
