 $(document).ready(function () {
	//STARTSEITE
		
		
	$("#contentBestOf > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 10000, true);
	
	
	//SELECTBOX REFERENZEN
	
	var selectBox = ["#contentFilterSelectbox1", "#contentFilterSelectbox2", "#contentFilterSelectbox3"];

	for (var i = 0; i < selectBox.length; i++) {
   		
		$(selectBox[i]).mouseover(function() {
			showSelectBox("#"+($(this).attr("id"))+"Open");
		});
		$(selectBox[i]).mouseout(function() {
			//hideSelectBox("#"+($(this).attr("id"))+"Open");
		});

	}
	
	function showSelectBox (divname)	{
		//$(divname).clearQueue();
		$(divname).stop(true, true);
		//$(divname).show();
		$(divname).animate(
			{
    		opacity: 1,
    		height: 'show'
  			}, 1000, function() {
    // Animation complete.
  			});
		};
	
	function hideSelectBox (divname)	{
		//$(divname).hide();
		//$(divname).clearQueue();
		$(divname).stop(true, true);
		$(divname).animate({
    opacity: 1,
    height: 'hide'
  }, 1000, function() {
    // Animation complete.
  });
	};
	
	
	//REFERENZEN
	var referenzen = ["#contentReferenzen1", "#contentReferenzen2", "#contentReferenzen3"];
	
	for (var i = 0; i < referenzen.length; i++) {
		$(referenzen[i]).mouseover(function() {
			showReferenzen("#"+($(this).attr("id"))+"Info");
		});
		$(referenzen[i]).mouseout(function() {
			//hideSelectBox("#"+($(this).attr("id"))+"Info");
		});

	}
	
	function showReferenzen (divname) {
		$(divname).animate({
		opacity: 1,
		height: 'show'
	  }, 1000, function() {
		// Animation complete.
	  });
	
		}
		
	
	
});

