$(document).ready(function()
{
	$("#imgPortfolio").click(function()
	{
		parent.location='http://www.flience.com/portfolio.html';
	});
	$("#imgHome").click(function() 
	{
		$("#imgContent").fadeOut(1000, function()
		{
			$("#imgContent").attr('src', 'images/homeContent.png');
			$("#imgContent").fadeIn(1000,function () {
				
			
			});
		});
	});
	
	$("#imgCompany").click(function() 
	{
		$("#imgContent").fadeOut(1000, function()
		{
			$("#imgContent").attr('src', 'images/companyContent.png');
			$("#imgContent").fadeIn(1000,function () {});
		});
	});
	
	$("#imgServices").click(function() 
	{
		$("#imgContent").fadeOut(1000, function()
		{
			$("#imgContent").attr('src', 'images/servicesContent.png');
			$("#imgContent").fadeIn(1000,function () {});
		});
	});
	
	$("#imgFuture").click(function() 
	{
		$("#imgContent").fadeOut(1000, function()
		{
			$("#imgContent").attr('src', 'images/futureContent.png');
			$("#imgContent").fadeIn(1000,function () {
			});
		});
	});
});