// JavaScript Document

$(function() {

	Cufon.replace('#navigation > li > a', { hover: true })('.home #content h3')('.content h2')('.content h3');
	$('#subscribe').defaultvalue('Email address');
	$('#navigation li')
		.hover(
			function() {
$(this).addClass('hover');
			}, function() {
$(this).removeClass('hover');
			}
		);
	$('div.cycle').cycle();
				
		$('.sub_navigation .login a').attr('target','_blank');

});