/*
  JS Grundfunktionen | © 2009 by [Website] Bestellformular
____________________________________________ */

$(document).ready(function(){

	$.fn.[Website]Scripts = function(settings) {
		settings = jQuery.extend( {

      setupAnimationsZeit: '500' // Durschnittliche Zeit aller Animationen

  	},settings);
    
    // START-CHECK
    if ( $("").length > 0 ) {

    	// HOVER-EFFECT
      $("").hover(
        function () {
      		$(this).stop().animate({
      			[STYLE]: ''
          }, settings.AnimationsZeit);
        },
        function() {
      		$(this).stop().animate({
      			[STYLE]: ''
      		}, settings.AnimationsZeit);
      	}
      );

    };

	};

  // Activate [WEBSITE]Scripts if HTML is ready
  $("html").[Website]Scripts();

});

