$(document).ready( function(){

$("#support-link").click(function () {

        $("#support-form").slideToggle("slow");
    });

	$("#support-form").submit(function() {
	      var str = $("#support-form").serialize();
	      jQuery.post( "http://www.byteworxx.com/hotspots/support.php", str);
		  $("#support-form").slideUp("slow");
		  this.reset();
		  return false;
	});
	
	
	$("#iphone-content").innerfade({timeout: 5000});

});
