$(document).ready(function(){
	$(".msg_body").hide();
	$(".msg_head").toggle(function(){
	$(this).next(".msg_body").slideDown(100);
	}, function(){
	$(this).next(".msg_body").slideUp(300);
	});
});

$(document).ready(function(){
	$("#webform-component-first_name, #webform-component-last_name, #webform-component-email").wrapAll(document.createElement("div")); 
	///$("#webform-client-form-44 div:first").addClass("contact_float");	   
	$("#main ul li").wrapInner("<span></span>");
	$("ol li").wrapInner("<span></span>");
	$("#block-block-1, #block-block-16").wrapAll(document.createElement("div"));
	$("#sidebar_right .block:last").addClass("last_block");
	$("#webform-component-first-name, #webform-component-last-name, #webform-component-email").wrapAll("<div class='contact_float' />");
});


$(document).ready(function(){

    $("div.clickable").hover(
      function() {
		$(this).addClass("hover");
        $(this).prepend('<div class="learn_more_arrow"></div>');
      },
      function() {
        $(this).removeClass("hover");
		$(".learn_more_arrow").remove();
      }
    );

$("div.clickable").click(function(event) {
  event.preventDefault();
  window.location = $(this).attr("url");
  
});

});



$(document).ready(function(){
$('a#video_placeholder').click(function() {
  $('#splash-video').css("display","block");
});

});


