$(function(){

	$('#contactForm2')
	   .jqTransform()
	   .validate({
         submitHandler: function(form) {
           $(form).ajaxSubmit({
                success: function() {
                    $('#contactForm2').hide();
                    $('#left-col-c').append("<h2 class='red'>Thanks! Your message has been sent.</h2>")
                }
           });
         }
        }); 
/*        
    $("#OtherInterest").hide();
        

    $('.jqTransformCheckbox').click(function(){
        if ($('#Otherchk:checked').val() == 'Other') {
            $("#OtherInterest").slideDown();
        } else {
            $("#OtherInterest").slideUp();
        }
    });  
    
    $(".jqTransformRadio").click(function() {
        if ($(".jqTransformRadio").eq(1).attr("class") == "jqTransformRadio jqTransformChecked") {
            $("#curTextArea").slideUp();
        } else {
            $("#curTextArea").slideDown();
        }
    });
*/	
});
function changeImage(filename,altTag)
{
  document.mainimage.src = filename;
  document.mainimage.alt = altTag;
}

