$(document).ready(
	function(){
		$("#slideshow .image").click(function() {
			var image = $(this).attr("rel");
			var title = $('img', this).attr("alt");
			$('#image').hide();
			$('#image').fadeIn('slow');
			$('#image').html('<img src="' + image + '"/><h6>' + title + '</h6>');
			return false;
		});
		swapValue = [];
		$(".swap-value").each(function(i){
			 swapValue[i] = $(this).val();
			 $(this).focus(function(){
					if ($(this).val() == swapValue[i]) {
						 $(this).val("");
					}
					$(this).addClass("focus");
			 }).blur(function(){
					if ($.trim($(this).val()) == "") {
						 $(this).val(swapValue[i]);
			 $(this).removeClass("focus");
					}
			 });
		});
	}
);
Cufon.replace('h1', { fontFamily: 'Corbel'});
Cufon.replace('h2', { fontFamily: 'Corbel'});
Cufon.replace('h3', { fontFamily: 'Corbel'});
Cufon.replace('h4', { fontFamily: 'Corbel'});
Cufon.replace('h5', { fontFamily: 'Corbel'});
Cufon.replace('h6', { fontFamily: 'Corbel'});
Cufon.replace('p', { fontFamily: 'Corbel'});
Cufon.replace('div', { fontFamily: 'Corbel'});
Cufon.replace('a', { fontFamily: 'Corbel', hover: true });
