if (typeof jQuery == 'undefined') {

        if (typeof $ == 'function') {
                // warning, global var
                thisPageUsingOtherJSLibrary = true;
        }

        function getScript(url, success) {

                var script     = document.createElement('script');
                     script.src = url;

                var head = document.getElementsByTagName('head')[0],
                done = false;

                // Attach handlers for all browsers
                script.onload = script.onreadystatechange = function() {

                        if (!done && (!this.readyState || this.readyState == 'loaded' || this.readyState == 'complete')) {

                        done = true;

                                // callback function provided as param
                                success();

                                script.onload = script.onreadystatechange = null;
                                head.removeChild(script);

                        };

                };

                head.appendChild(script);

        };

        getScript('http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js', function() {

                if (typeof jQuery=='undefined') {

                        // Super failsafe - still somehow failed...

                } else {

                        // jQuery loaded! Make sure to use .noConflict just in case
                        
                        jQuery.noConflict();
                        if (thisPageUsingOtherJSLibrary) {

                                // Run your jQuery Code

                        } else {

                                // Use .noConflict(), then run your jQuery Code

                        }

                }

        });

} else { // jQuery was already loaded

        // Run your jQuery Code

};

jQuery(document).ready(function() {
  return;
  jQuery(
  '<style type="text/css">' + 
  '#sms_message_img {' + 
    'border: 2px solid #000; margin:10px; float: right;' + 

  '}' + 
  '#sms_message_form_div {' + 
    'background-color:  #ff9;' + 
    'padding: 5px;' + 
    'border: 1px solid #000;' + 
    'color: #000000;' + 
    'width: 300px;' + 
  '}' + 
  '</style>  ' + 
  '<div id="quote_message_div" style="position: absolute; right: 0; bottom: 0; display: none;">' + 
    '<div id="sms_message_form_div">' +
    '<div id="close_div"><span style="float:right;text-decoration:underline;cursor:pointer;" onclick="jQuery(\'#quote_message_div\').hide();">Close</span></div><div style="clear:both;"></div>' +
      '<form action="http://www.techanywhere.net/sms_me.php" method="post">' +
        '<div id="sms_message_form_div_head">' +
          '<img src="http://techanywhere.net/images/tn.jpg" align="right"><span style="font-weight: bold;">Hi, I&#39;m Rusty!  You can txt your computer question below, or call me directly @ 901-515-8433.</span>' +
        '</div>' +
        '<div id="sms_message_form_inputs"><br />' +
          'Enter your phone number:<br />' +
          '<input type="text" name="sms_phone_number" id="sms_phone_number" size="20" maxlength="12" /><br /><br />' +
          
          'Enter your name:<br />' +
          '<input type="text" name="sms_phone_number" id="sms_phone_number" size="20" maxlength="20" /><br /><br />' +

          'Type your question here:<br />' +
          '<textarea name="sms_text" id="sms_text" cols="20" rows="3"></textarea><br /><br />' +
          '<input type="submit" id="sms_submit" value="Text Me" name="sms_submit" class="button"/>' +
        '</div>' +
      '</form>' +
      '<div style="clear: both;"></div>' +
    '</div>' +
  
  '</div>').appendTo('body');
  jQuery('#quote_message_div').slideDown();  
});

