$(document).ready(function(){ 
	$("#toggle").hide();
	 $("#find_trip").width("308px");
      $("#find_trip").height("24px");
      $("#find_trip_featured").hide();
      $("#find_trip_subscribe").hide();
      $("#find_trip_form_wrap").hide();
      
}); 

$(document).ready(function(){ 
$("#toggle").click(function () {

// Fade out the content
$("#find_trip_featured").fadeOut(150, function () {
   	// Handle the toggle arrow:
	$("#toggle").hide();
	$("#toggle-expand").show();
	
	// Animate the div:
     $("#find_trip").animate( { width:"308px"}, 100 );
      $("#find_trip").animate( { height:"24px"}, 100 );
       });
$("#find_trip_subscribe").fadeOut(150, function () {
       });
$("#find_trip_form_wrap").fadeOut(150, function () {
       
       });
 $("#find_trip_form").fadeOut(150, function () {
       
       });     


   
      return false;
    }); 
 }); 

$(document).ready(function(){ 
$("#toggle-expand").click(function () {
// Handle the toggle arrow:
$("#toggle").show();
	$("#toggle-expand").hide();
 $("#find_trip").animate( { width:"903px"}, 100 );
      $("#find_trip").animate( { height:"75px"}, 100, function () {
       $("#find_trip_subscribe").fadeIn(150, function () {
       });
       $("#find_trip_form_wrap").fadeIn(150, function () {
       
       });
       $("#find_trip_form").fadeIn(150, function () {
       
       });
       $("#find_trip_featured").fadeIn(150, function () {
    });
        });
   
      return false;
    }); 
 }); 
