//REPLACING FONT
Cufon.replace("h2");
Cufon.replace("h3");
Cufon.replace("#nav li a", {hover: true});

//OPENS LINKS IN NEW WINDOW/TAB
$(function() {
	$(".external").attr("target","_blank");
});

//EXTERNAL LINKS
$(document).ready(function(){
	$("a[href^='http:']:not([href*='" + window.location.host + "'][target='_blank'])").live('click', function(){
        $(this).attr('target','_blank');
    });

});

//REWRITES EMAIL FOR SPAM REDUCTION
$(function() {
	var at = / at /;
	var dot = / dot /g;
	$("span.mailme").each(function () {
		var addr = $(this).text().replace(at,"@").replace(dot,".");
		$(this).after('<a href="mailto:'+ addr +'" title="Send an email">'+ addr +'</a>');
		$(this).remove();
	});
});

//VALIDATE FORMS
$(document).ready(function(){
	$("#contactform").validate();
});

//SLIDESHOW
$(document).ready(function(){
	$("#slideshow").cycle();
});

//POPUP PHOTO/VIDEO FOR MEDIA PAGE
$(document).ready(function(){
	$("a[rel='popup']").colorbox({transition:"fade"});
});
