$(function(){
	
	$('#topnav > ul > li > ul').hide();
	$('#topnav > ul > li').hover(function () {
		$(this).children('ul').show();
	}, function () {
		$(this).children('ul').hide();
	});
	$('#topnav > ul > li:last').addClass('end');
	
	$('#main_rotator').carouFredSel({
		items:{
			visible:1,
			width: 960,
	        height: 390
		},
		scroll:{
		  fx:"crossfade",
			duration:750
		},
		width:960,
		height:390,
		auto:6000
	});
	
	$('.equalize').equalizeHeights();
	
	$('#newsletter input[type=text]').focus(function () {
		if ($(this).val() == 'email address')
		{
			$(this).val('');
		}
	});
	$('#newsletter input[type=text]').blur(function () {
		if ($(this).val() == '')
		{
			$(this).val('email address');
		}
		
	});

});

