	$(document).ready(function() {
		$("#contact").validate({meta: "validate"});
		$('#header-carousel').cycle({
			fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		});
	});
	
	$(function(){ 
			$('input[title!=""]').hint();
	});


	$(function() {
		$(".image p")
			.wrapInner("<span>")
		$(".image p br")
			.before("<span class='spacer'>")
			.after("<span class='spacer'>");
	});


	$(document).ready(function() {
		$("ul#topnav li").hover(function() { 
			$(this).css({ 'background' : 'url(images/layout/arrow.gif) no-repeat center top'}); 
			$(this).find("span").show(); 
		} , function() { 
			$(this).css({ 'background' : 'none'}); 
			$(this).find("span").hide(); 
		});
	});
		
