// JavaScript Document
// manjographics / famefabrik / compete court

$(document).ready(function(){
						   
	$('.gotdrop').hover(function() {
				var inhalt = $(this).children('.dropdown').children().size() * 25 + 10;

				$(this).children('.dropdown').stop().animate({ height: inhalt  }, 500 );	
		}, function() {
				$(this).children('.dropdown').stop().animate({ height: '0px'  }, 300 );
	});
	
	
	$('.videowrapper').hover(function() {
				$(this).children('.hovertitle').stop().animate({ bottom: '0px'  }, 300 );	
		}, function() {
				$(this).children('.hovertitle').stop().animate({ bottom: '-27px'  }, 200 );
	});
		
	
	$(".imagelist, .videowrapper, .sidebar_play").yoxview(	{backgroundOpacity: 0.5, renderInfoPin: false, renderInfo: false, defaultDimensions: { video: { width: 600 }}}	);
	
						   
});


	function scroll(id){
     	$('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');
	}
