// JavaScript Document

	$(document).ready(
		
		function () 
		{
			$("#bdy h3:first").css("margin-top", 0);
			$(".pro-cont h3:first").css("margin-top", 0);
			$(".t-img-right h1 span").css("opacity", .5);
			
			$(".scroll-cont").wrap("<div class=\"home-txt-box\" />");
			$(".home-txt-box").append("<div class=\"box-fade-top\" />");
			$(".home-txt-box").append("<div class=\"box-fade-btm\" />");
			
			// Animate any thing
			function ANIMATE_BTN(obj) 
			{
				$(obj).hover(
					function(){ $(this).stop().animate({opacity:1}, 50); }, 
					function(){ $(this).stop().animate({opacity:.7}, 100); } 
				);
			}
			
			ANIMATE_BTN(".feature-box li a"); // Animate feature buttons
		}
		
	);
