function Show(id)
{
	a = document.getElementById(id);
	if(a.style.display=='none') { a.style.display=''; }
}
function NShow(id)
{
	a = document.getElementById(id);
	if(a.style.display=='') 
	{ 
		a.style.display='none'; 
	}
}


function Validate()
{
	a = true;
	if(document.forms['contact-form'].fname.value=='') { a = false; }
	if(document.forms['contact-form'].lname.value=='') { a = false; }
	if(document.forms['contact-form'].phone.value=='') { a = false; }
	if(document.forms['contact-form'].email.value=='') { a = false; }
	if(document.forms['contact-form'].contact.value=='Choose') { a = false; }
	if(document.forms['contact-form'].comments.value=='') { a = false; }
	return a;
}

jQuery(document).ready(function(){
	window.setInterval(function(){
		var img = jQuery('#rotate img');

		for (var i=0;i<img.length;i++)
		{			
			if (jQuery(img[i]).css('display')!='none')
			{
				if (i==img.length-1) 
						jQuery(img[0]).fadeIn('slow',function(){
							  jQuery(img[i]).fadeOut('slow'); });
					else
						jQuery(img[i]).next('img').fadeIn('slow',function(){
							  jQuery(img[i]).fadeOut('slow'); });		
				return;				
			}
		}
	},9000);
});