$(document).ready(function() {
  
  // Mainmenu
  $('li[id*="mm-item"]').hover(
  function() {
  	if($(this).attr('class').search(/active/) == -1) {
	  	$(this).children().stop()
	  		   .animate({'color':'#ffffff'}, 800, 'easeOutCubic');
	}
  },
  function() {
  	if($(this).attr('class').search(/active/) == -1) {
	  	$(this).children().stop()
	  		   .animate({'color':'#ffffff'}, 800, 'easeOutCubic');
  	}
  });
  
  // Submenu
  $('li[id*="sm-item"]').data('hover', false)

  $('li[id*="sm-item"]').hover(
  function() {
  	if($(this).attr('class').search(/active/) == -1) {
	  	$(this).children().stop()
	  		   .animate({'color':'#008DD8'}, 800, 'easeOutCubic');
	  		
	}
  },
  function() {
  	if($(this).attr('class').search(/active/) == -1) {
	  	$(this).children().stop()
	  		   .animate({'color':'#808080'}, 800, 'easeOutCubic');
  	}
  });
  
  // Metamenu
  $('li[id*="am-item"]').hover(
  function() {
  	if($(this).attr('class').search(/active/) == -1) {
	  	$(this).stop()
	  		//.animate({'paddingLeft':'15px','backgroundPosition':'4px 7px'}, 800, 'easeOutCubic')
	  		//.children('a').stop().animate({'color':'#9e1622'}, 500);
	}
  },
  function() {
  	if($(this).attr('class').search(/active/) == -1) {
	  	$(this).stop()
	  		//.animate({'paddingLeft':'0px','backgroundPosition':'-11px 7px'}, 800, 'easeOutCubic')
	  		//.children('a').stop().animate({'color':'#999'}, 500);
  	}
  });

	if($('.core-textarea').val() == 'Hier bitte Ihren Text eingeben ...')
	{
		$('.core-textarea').val('Hier bitte Ihren Text eingeben ...').css({'color':'#ccc', 'font-style':'italic'});
	}

	$('.core-textarea').focus(function() {
		if($(this).val() == 'Hier bitte Ihren Text eingeben ...')
		{
			$(this).val('').css({'color':'#646566', 'font-style':'normal'});
		}
		$('#coaching8').attr('checked', true);
	});
	
	
	$('.core-textarea').blur(function() {
		if($(this).val() == '')
		{
			$('#coaching8').attr('checked', false);+
			$(this).val('Hier bitte Ihren Text eingeben ...')
				   .css({'color':'#ccc', 'font-style':'italic'});
		}else{
			$('#coaching8').attr('checked', true);
		}
	});
  
  // Weiterlesen-Buttons
  $('.readmore').hover(
  function() {
  	$(this).animate({'width':'85px'}, 800, 'easeOutCubic');
  },
  function() {
  	$(this).animate({'width':'65px'}, 800, 'easeOutCubic');
  });
  
  $('#core-slider').core_slideshow();
/*
	jQuery.each(jQuery.browser, function(i) {
	  if($.browser.msie()){
		if($.browser.version.number() == 6)
		{
			if($('#core_logout').length == 0)
			{
				// Grayscale Effekt
				$('.core-item').each(function() {
					if($(this).children('.item-body').children('a').children().length <= 1)
					{
						$(this).children('.item-body').children('a').children('img:first').clone().appendTo($(this).children('.item-body').children('a')).hide();
						$(this).children('.item-body').children('a').children('img:first').pixastic("desaturate").next().css({'position':'absolute', 'marginTop':(-20+'px'), 'marginLeft':(-150+'px')});
						$(this).children('.item-body').hover(function() {
							$(this).children('a').children('img:last').fadeIn(1000);
						}, function() {
							$(this).children('a').children('img:last').fadeOut(400);
						});
					}
				});
			}
		}else{
			if($('#core_logout').length == 0)
			{
				// Grayscale Effekt
				$('.core-item').each(function() {
					if($(this).children('.item-body').children('a').children().length <= 1)
					{
						$(this).children('.item-body').children('a').children('img:first').clone().appendTo($(this).children('.item-body').children('a')).hide();
						$(this).children('.item-body').children('a').children('img:first').pixastic("desaturate").next().css({'position':'absolute', 'marginTop':(-20+'px'), 'marginLeft':(-175+'px')});
						$(this).children('.item-body').hover(function() {
							$(this).children('a').children('img:last').fadeIn(1000);
						}, function() {
							$(this).children('a').children('img:last').fadeOut(400);
						});
					}
				});
			}
		}
	  }else{
	     if($('#core_logout').length == 0)
		{
			$('.core-item').each(function() {
				if($(this).children('.item-body').children('a').children().length <= 1)
				{
					$(this).children('.item-body').children('a').children('img:first').clone().appendTo($(this).children('.item-body').children('a')).hide();
					$(this).children('.item-body').children('a').children('img:first').pixastic("desaturate").next().css({'position':'absolute', 'marginTop':(-160+'px')});
					$(this).children('.item-body').hover(function() {
						$(this).children('a').children('img:last').fadeIn(1000);
					}, function() {
						$(this).children('a').children('img:last').fadeOut(400);
					});
				}
			});
		}
	  }
	});
  */
});
