jQuery.noConflict();

	jQuery(document).ready(function(){
		jQuery("#featured > ul.ui-tabs-nav").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
	});

    jQuery(document).ready(function(){

    // onclick inputbox clear

      jQuery('#s').focus(function(){
      if(this.value=='Search the site')
      {
      this.value=' '
      }
     });

     jQuery('#s').blur(function(){
      if(this.value==' ')
      {
      this.value='Search the site'
      }
     });

     jQuery('#mce-EMAIL').focus(function(){
      if(this.value=='Enter your email address')
      {
      this.value=' '
      }
     });

     jQuery('#mce-EMAIL').blur(function(){
      if(this.value==' ')
      {
      this.value='Enter your email address'
      }
     });

    });
