
jQuery.noConflict();

jQuery(function($) {
		
	
	$('#welcomeFaderSlides').cycle({
		speed: 700,
		pager: '#welcomeFaderNav',
		pagerEvent: 'mouseover',
		pauseOnPagerHover: true
	});
	
	/*
	$('input.hintValue').each(function(i) {
		$(this).data('hint', $(this).attr('value'));
	});
	
	$('input.hintValue').focus(function() {
		var hint = $(this).data('hint');
		var value = $(this).attr('value');
		if (value == hint) {
			$(this).attr('value', '');
		}
	});
	$('input.hintValue').blur(function() {
		var hint = $(this).data('hint');
		var value = $(this).attr('value');
		if (value == '') {
			$(this).attr('value', hint);
		}
	});
	*/
	
});



