
$(document).ready(
	function() {

		//------------------
		// INPUT fields default values
		//------------------

		$('INPUT[@onempty]').focus(
			function() {
				var obj = $(this).get(0);
				if(obj.value == $(this).attr('onempty')) { obj.value = ''; $(this).removeClass('Dim');}
			}
		)

		$('INPUT[@onempty]').blur(
			function() {
				var obj = $(this).get(0);
				if(obj.value == '') { obj.value = $(this).attr('onempty'); $(this).addClass('Dim'); }
			}
		)
		
		DocumentReady(document);
	}
)

function DocumentReady(obj) {
	
	$(obj).find('.CycleContainer').cycle({
		fx:     'scrollLeft',
		timeout: 6000, 
		delay:  -2000
	});
	$(obj).find('.CycleContainer').removeClass('Hidden');

}



//----------------------
// FAQ
//----------------------

function SwitchFAQ(iQuestion) {
	$('.Question').css('font-weight','normal');
	$('.Answer').hide('fast');
	$('#Q' + iQuestion).css('font-weight','bold');
	$('#A' + iQuestion).show('fast');
}
