$(document).ready(function(){
	
	/*var $teasers = $('.teaser');
	var $teaserImgs = $('.teaser img');
	$teaserImgs.bind('mouseenter',function(e){
		this.src = this.src.replace(/\.jpg/,'_hover.jpg');
	});
	$teaserImgs.bind('mouseleave',function(e){
		this.src = this.src.replace(/\_hover.jpg/,'.jpg');
	});*/
	
	$(".fancybox").fancybox({
		'overlayOpacity': 0.7
	});

})
