// JavaScript Document
$(document).ready(function(){
	$('h2').fontreplace('textile');
/*
	$('h2').fontReplace({
		fontColor: '#070335'
	,	fontFile: 'textile'
	,	fontSize: 18	
	,	width:700
	});
*/
	$("#galerie img").fadeTo(1, 0.5);

	$("#galerie img").hover(function () {
			$(this).fadeTo("fast", 1);
		},
		function () {
			$(this).fadeTo("fast", 0.5);
		}
	);
	/*
	$("#galerie a").overlay({ 
		target: '#gallery'
	,	absolute: true
	,	top: 75
	,	expose: {  
			color: '#000000',  
			opacity: 0.9,  
			closeSpeed: 800  
		}
	}).gallery({ 
		speed: 800 
	,	template: ''
	,	rotate: true
	});
	*/
	
	Shadowbox.init({
		adapter: "jquery"
	,	continuous: true
	,	displayCounter: false
	,	overlayOpacity: 0.9
	, overlayColor: "#000"
	});
	
});

