$(document).ready(function(){
		
	//carousel
	$('#homepagehead #carousel').cycle({
		fx: 'fade', 
		speed:'slow',
		timeout:25000,  // milliseconds between slide transitions (0 to disable auto advance)
		pager:'#pager',
		activePagerClass:'selected',
		pagerAnchorBuilder: function(idx, slide) { 
			// return selector string for existing anchor 
			return '#pager li:eq(' + idx + ') a'; 
		} 
	});
	
	//routevalue
	$('#routevalue').focus(function() {
		if(this.value == this.title) {
			this.value = '';
		}
	});
});

