$(document).ready(function()
{	
	$('body').fadeIn(700);
	
	$(".NavLink").click(function()
	{
		var id = this.id
		$('body').fadeOut(700,function(){
				
				switch(id)
				{
				case "nav_home":
				  document.location = "http://www.ordertalk.com"
				  break;
				case "nav_about":
				  document.location = "about_us.html"
				  break;
				case "nav_features":
				  document.location = "our_product.html"
				  break;
				case "nav_partners":
				  document.location = "partners.html"
				  break;
				case "nav_showcase":
				  document.location = "showcase.html"
				  break;
				case "nav_contact":
				  document.location = "contact.aspx"
				  break;
				}
				
				
				});

	});
	
});

var newsDivCounter = 1
var newDivMax = 3 // amount of div quotes on the page
function changeNewsDisplay(){
	
	for(var i = 0 ;i<newDivMax;i++){
		$("#quote"+i+"").fadeOut(500)
		}
	
	$("#quote"+newsDivCounter+"").fadeIn(500)
	
	newsDivCounter++
	
	if(newsDivCounter >= newDivMax)newsDivCounter = 0
	}
	
