/*
  JS Grundfunktionen | © 2009 by altstadthotel-wetzel.de
____________________________________________ */

$(document).ready(function(){

	$.fn.hotelWetzelScripts = function(settings) {
		settings = jQuery.extend( {

      AnimationsZeit: '300' // Durschnittliche Zeit aller Animationen

  	},settings);

    $(".active_link").css('opacity', '1.0');

    // START-CHECK
    if ( $("#header_english").length > 0 ) {
    
      $(".non_active").css('opacity', '0.5');
    
    	// HOVER-EFFECT
      $(".non_active").hover(
        function () {
      		$(this).stop().animate({
      			opacity: '1.0'
          }, settings.AnimationsZeit);
        },
        function() {
      		$(this).stop().animate({
      			opacity: '0.5'
      		}, settings.AnimationsZeit);
      	}
      );
    
    };
  	
	};

  // Activate hotelWetzelScripts if HTML is ready
  $("html").hotelWetzelScripts();

});
