
jQuery(document).ready(function(){

     /*
    jQuery("#clientarea").css("opacity","0.3");
    
    
       SHOPPING CART ANIMATION, REMOVE COMMENTING ONCE ITS READY TO BE IMPLEMENTED
         */    
    jQuery("#clientarea").mouseenter(function () {
      jQuery("#clientarea").animate({ 
        top: -30
      }, 500 );

    });
    jQuery("#clientarea").mouseleave(function () {
      jQuery("#clientarea").animate({ 
        top: -66
      }, 500 );

    });
    
 
    
	Cufon.replace('h1')('h2')('h3')('h4')('h5')('#top_menu ul li a')('table#prices th')('#tour_content ul#count li')('#promodesc p');

	Cufon.replace('#promodesc h1', {textShadow: '#333 1px 1px'});
	Cufon.replace('#promodesc h2', {textShadow: '#333 1px 1px'});
	Cufon.replace('table#prices td.totalprice', {textShadow: '#333 1px 1px'});
	
	
	
	
	jQuery("#contact_us_sticky").animate({opacity: .5})
	jQuery("#contact_us_sticky").mouseenter(function () {
	jQuery("#contact_us_sticky").animate({opacity: 1})	
	});
	jQuery("#contact_us_sticky").mouseleave(function () {
	jQuery("#contact_us_sticky").animate({opacity: .5})	
	});
	
  jQuery("div.questionContainer .question_content").css("display","none");

	jQuery("div.questionContainer a").click(function(){
  
     jQuery(this).parent().find("div.question_content").toggle("slow");
    //alert("test");
    
  });
	
	jQuery("div#flatty_images img").css("opacity","0.5");


	jQuery("div#flatty_images img").mouseenter(function () {
	jQuery(this).animate({opacity: 1})	
	});
	jQuery("div#flatty_images img").mouseleave(function () {
	jQuery(this).animate({opacity: 0.5})	
	});










	});
