$(function(){
	/* choose your transition type for the changing elements,
		blindX, blindY, blindZ, cover, curtainX, curtainY, fade, fadeZoom, growX, growY, scrollUp, scrollDown, scrollLeft, scrollRight, scrollHorz, scrollVert, shuffle, slideX, slideY, toss, turnUp, turnDown, turnLeft, turnRight, uncover, wipe, zoom
	*/
	
	/* INFO IMAGES */
		$('.info').cycle({
		fx: 'slideY',
		speed:    500, 
		timeout:  6000 
	});
	
	/* NEWS SWITCHER */
	$('.news').cycle({
		fx: 'turnUp',
		speed:    1000, 
		timeout:  8000 
	});
	
	/* HOME PAGE TABS*/
	$("#tabs").tabs();
	
	//FAQs
	$("#faq_0").show();
	
	$("#select_faqs option[value='0']").attr('selected', 'selected');
				
	$("#select_faqs").change(function() {
		$("div.faq").hide();
		$("#faq_"+$("#select_faqs").val()).show();
		$("#select_faqs").blur();
	});
	
	// CONTACT FORM
	$("#contact-us-form").validate(); 
	
	// CUSTOMER DETAILS FORM
	$("#customer-details").validate();  
	
	// ABOUT and SERVICES ACCORDION
	$("#accordion").accordion();
	
});

function toggleDisplayBlock(idOf)
{
	var element = document.getElementById(idOf);
	if (element != undefined)
	{
		if (element.style.display == 'none')
		{
			element.style.display = 'block';
		}
		else
		{
			element.style.display = 'none'; 
		}
	}
}

function upload_progress()
{
	toggleDisplayBlock('loading');
	return true;
}