


jQuery.noConflict();
jQuery(document).ready(function() {
	jQuery('a.thumbnail').click(function() {
		jQuery('div',this).css({top: '-20px',left: '-150px',	visibility: 'visible', zindex: '50'});
		return false;
	});
	jQuery('a.thumbnail div').mouseout(function() {
		if(jQuery.browser.msie && jQuery.browser.version==7.0){jQuery('a.thumbnail span').css("left","-25px");}
		jQuery(this).css({top: '-1000px',left: '-1000px',	visibility: 'hidden', zindex: '50'});

	});
	
	jQuery("dl.audiobibel dl").hover(
  		function () {
   		    jQuery(this).addClass("bibelover");
  		},
  		function () {
    		jQuery(this).removeClass("bibelover");
  		}
	);
	
	jQuery("h6.testStart").hover(
  		function () {
   		    jQuery(this).addClass("testHover");
  		},
  		function () {
    		jQuery(this).removeClass("testHover");
  		}
	);
	
	jQuery('h6.testStart').click(function() {
		jQuery('h6.testStartAktiv').removeClass('testStartAktiv');
		jQuery(this).addClass('testStartAktiv');
		var div = jQuery(this).next('div.testStart');
		div.slideToggle();
		/*if (div.hasClass('testStartClose')) {
		jQuery('div.testStart:not(.testStartClose)').addClass('testStartClose').slideUp();
		div.removeClass('testStartClose').slideDown();
		} */
	});
	jQuery('div.testStart').addClass('testStartClose').hide();
	
    jQuery('a.group').fancybox({
     'hideOnContentClick': false
    }); 

});

