jQuery(function($) {
	var file = jQuery.url.attr("file");
	if (file != null){
		file = file.replace(".php", "");
		$('#' + file + '_btn').addClass('actived');

	}else 
		$('#index_btn').addClass('actived');
		
	if( $("a.fancy").length > 0 ){
		$("a.fancy").fancybox({
			'transitionIn'	:	'elastic',
			'transitionOut'	:	'elastic',
			'speedIn'		:	600, 
			'speedOut'		:	200, 
			'overlayShow'	:	false
		});
	}
	
});

