$(function() {


/* ----- TYPOGRAPHY ----- */

	// Cufon font replacement
	Cufon.replace('h1, h2, h3, h4, h5, h6');
	Cufon.replace('#header-content', { textShadow: '#fff 1px 1px 1px' });
	Cufon.replace('h1', {
		color: '-linear-gradient(#383838, #1f1f1f)',
		textShadow: '#fff 1px 1px 1px'
	});
	Cufon.replace('#sidebar h4.widget-header', {
		color: '-linear-gradient(#d6d4cf, #c4c2bc)',
		textShadow: '#fff 1px 1px 1px'
	});
	
	// Home H1 bottom margin hack
	$('#main-page #header-content h1').addClass('get-margin-back');

/* ----- END TYPOGRAPHY ----- */
	
	

/* ----- IMAGES, GALLERIES ----- */

	// Catch alone images for prettyPhoto
	$("a[href$='.jpg'], a[href$='.png'], a[href$='.gif']").attr("rel", "prettyPhoto");

	// Catch gallery images for prettyPhoto
	$(".gallery").each(function(i) {
		$("a[href$='.jpg'], a[href$='.png'], a[href$='.gif']", this).attr("rel", 'prettyPhoto[' + i + ']');
	});
	
	// prettyPhoto initialization
	$("a[rel^='prettyPhoto']").prettyPhoto({
		theme: 'light_square' /* light_rounded / dark_rounded / light_square / dark_square / facebook */
	});
	
/* ----- END IMAGES, GALLERIES ----- */


});
