// JavaScript Document
$(document).ready(function()
	{
			//hide blocks when load page web-hosting
			$('.txt').hide();
			//show text when mouse over web design
			$('.web-design').hover(function()
			{
					$('#web-design-text.txt').fadeIn('slow');
			});
			$('.web-design').mouseout(function()
			{
					$('.txt').fadeOut('slow');
			});
			

			//show text when mouse over web hosting
			$('.web-hosting').hover(function()
			{
					$('#web-hosting-text.txt').fadeIn('slow');
			});
			$('.web-hosting').mouseout(function()
			{
					$('.txt').fadeOut('slow');
			});
			
			//show text when mouse over web application
			$('.web-application').hover(function()
			{
					$('#web-application-text.txt').fadeIn('slow');
			});
			$('.web-application').mouseout(function()
			{
					$('.txt').fadeOut('slow');
			});
	}

);
