/********************************************************************************/
/***** CUFON STYLES ************************************************************/
/******************************************************************************/

Cufon.replace('#header .navigation a', {
	hover: true
});


/********************************************************************************/
/***** BACK TO TOP *************************************************************/
/******************************************************************************/

$(document).ready(function() {
	var backToTop = $('.back-to-top li a');
	$(backToTop).each(function(i) {
		$(backToTop[i]).click(function(e) {
			$('html, body').animate({scrollTop:0}, 'slow');
			e.preventDefault();
		});
	});
});


/********************************************************************************/
/***** RELL EXTERNAL ***********************************************************/
/******************************************************************************/

$(document).ready(function() {
	var anchors = $(document).find("a");
	for(var i=0; i<anchors.length; i++) {
		var anchor = $(anchors[i]);
		if($(anchor).attr("rel") == "external") {
			$(anchor).attr({'target':'_blank'});
		}
	}
});