
$(document).ready(function() {
	var C = {
		overlayOpacity : 0.9,
		overlayColor   : '#191b1a',
		titlePosition  : 'over'
	};
	$(".gallery a.img").fancybox(C);
	$('a[target="_fancybox"]').fancybox(C);
    $(".openGallery").click(function() {
		var Imgs = [];
		$('#gal'+$(this).attr('rel')+' a').each(function() {
			Imgs.push({
				'href' : this.href,
				'title' : $(this).html()
			});
		});
		$.fancybox(Imgs, C);
	});
	$('a.media').media();

	Cufon.replace('h5');
	Cufon.now();
});


