$(document).ready(function() {
	$("a.zoom").fancybox();
	$('ul#nav').superfish();
	// Initialize Galleria
	$('#galleria').galleria();
	
	$("ul#nav").center({
		vertical: false // only horizontal
	});
	
	var nw = $('ul#nav').width();
	
	nw += 1;
	
	$('ul#nav').css('width', nw + 'px');
	$('ul#nav').css('background', '#FFF');
	
	
	$('.file_slim_header').live('click',function(){
		var helper = $(this).attr('helper');
		var hidden = $('#file_slim_wrapper_'+helper).css('display');
		$('#file_slim_wrapper_'+helper).slideToggle();
		
		if(hidden == 'none')
			$(this).css('background-image', 'url("./style/down_green.png")');
		else 
			$(this).css('background-image', 'url("./style/right_green.png")');
		
	});
	
	$('.toggleCal').change(function() {
		$('.'+this.name).toggle();
		return false;
	});
	
});
Cufon.replace('h3', {
	fontFamily: 'vag'
});

