/*$('#header a').click(function() {
    var $title = $(this).attr('rel');
    
    $('#header a').removeClass("select");
    
    if($title){ 
        $('#fullWidth').css('opacity', '0');
}else{ $('#fullWidth').css('opacity', '1');}

	$.get('include/content/genericPage.php?pageAjax=true&page='+$title, function(data){
		 $('#content .container').fadeOut(300, function(){
    			$(this).html(data).fadeIn(300);
   		 });
    //$('#content .container').load('include/content/genericPage.php?pageAjax=true&page='+$title, function(data) {
    $("a[rel=2011]").fancybox();
    $("a[rel=2010]").fancybox();
 $("a[rel=2009]").fancybox();
 $(".popup").fancybox();
  $("a[rel=evento]").fancybox({
	    'transitionIn'	: 'none',
            'padding'		: 0,
		    'transitionOut'	: 'none',
		    'autoScale'		: false,
            'hideOnContentClick' : true
	});
        });
        
        $(this).addClass('select');
    return false;
});
*/
