        $(document).ready(function(){	
            $("#slider").easySlider({
                vertical: true,
				auto: true,
				continuous: true
            });
        });
        $(document).ready(function(){
                                   
            $(".slidingDiv").hide();
            $(".show_hide").show();
            
            $('.show_hide').click(function(){
            $(".slidingDiv").slideToggle();
            });
			
        });
        $(document).ready(function() {  
			$('#menu > ul > .page-item-8 > a').removeAttr('href');
        });  
		Cufon.replace('#menu > ul > li > a', { fontFamily: 'DINPro Medium' } );
		Cufon.replace('.backontop a, .regular, #right h3, .reasons li span, #right h4', {fontFamily: 'DINPro Regular' });
		Cufon.replace('#login > ul > li > a, .box h2, .bold, #subhead h1, #subhead2 h1', {hover: true, fontFamily: 'DINPro Bold' });
		$(document).ready(function() { 
		   function updateMenu() { 
			 setTimeout(function() { 
			   Cufon.replace('#menu > ul > li > a', {fontFamily: 'DINPro Medium'}, false); 
			 }, 10); 
		   } 
		   $('#menu li').hover(updateMenu, updateMenu); 
		
		});
	
        $(function(){ 
            // find all the input elements with title attributes
            $('input[title!=""]').hint();
            $('textarea[title!=""]').hint();
        });
		$(document).ready(function() {
			//Default Action
			$(".tab_content").hide(); //Hide all content
			$("ul.tabs li:first").addClass("active").show(); //Activate first tab
			$(".tab_content:first").show(); //Show first tab content
			
			//On Click Event
			$("ul.tabs li").click(function() {
				$("ul.tabs li").removeClass("active"); //Remove any "active" class
				$(this).addClass("active"); //Add "active" class to selected tab
				$(".tab_content").hide(); //Hide all tab content
				var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
				$(activeTab).fadeIn(); //Fade in the active content
				return false;
			});
		});
		$(document).ready(function(){
        $(".pricelink a").click(function(){
            window.location = $(this).attr("href");
            return false;
        });
        });

