// JavaScript Document	<script type="text/javascript">
		Cufon.replace('h4, h3, #splash h2, .tab_navigation li a, #splash .content p, div#pricing-info p.price, div#pricing-info p.desc');
		
		$(function () {
			//Form text field styling and focus --------------------------
			$("p.replace input").focus(function(){
				$(this).parent().css("backgroundPosition","0 -55px");
				if($(this).val() == $(this).attr('defaultValue'))
			    {
			      $(this).val('');
			    }
			});
			
			$("p.replace input").blur(function(){
				$(this).parent().css("backgroundPosition","0 0");
				if($(this).val() == '')
			    {
			      $(this).val($(this).attr('defaultValue'));
			    }
			});
			
			//Form text field styling and focus (Textarea) --------------------------
			$("div.field_textarea textarea").focus(function(){
				$(this).parent().css("backgroundPosition","0 -254px");
			});
			
			$("div.field_textarea textarea").blur(function(){
				$(this).parent().css("backgroundPosition","0 0");
			});
			
			//Form text field styling and focus (Short Textarea) --------------------------
			$("div.field_textarea_short textarea").focus(function(){
				$(this).parent().css("backgroundPosition","0 -174px");
			});
			
			$("div.field_textarea_short textarea").blur(function(){
				$(this).parent().css("backgroundPosition","0 0");
			});
			
			
			
			//Tab Splash and Tabs --------------------------
			var tabContainers = $('div#splash > div');
			tabContainers.hide().filter(':first').show();
				
			$('div#splash ul.tab_navigation a').click(function () {
				tabContainers.fadeOut("slow");
				tabContainers.filter(this.hash).fadeIn("slow");
											
				$('div#splash ul.tab_navigation a').removeClass('selected');
				$(this).addClass('selected');
				return false;
			})
			
			
			//Carousel --------------------------
		    $("#theme_carousel").jCarouselLite({
		    	btnNext: ".next",
			    btnPrev: ".prev",
		        visible: 4,
		        scroll: 4,
		        speed: 700,
		        circular: false
		    });
								
		});
	</script>
