$(document).ready(function() {
	
	//Kauf Button
	$("#button_themes span a").css({opacity:"0"});
	$("#button_themes span a").hover(function () {
		$(this).stop().animate({opacity: 1}, 'fast');},
		function () { $(this).stop().animate({ opacity: 0}, 'normal'); 
	});
	
	
	//VIDEOS ÖFFNEN
	$("a.tutorials").each( function() {
		var toLoad	= $(this).attr("rel");								
		var tutdown	= $(".download",this).attr("rel");
		$(this).removeAttr("href");							
		$(this).click(function(){
			$("a.tutorials").removeClass("active");
			$(this).addClass("active");
			$("#screenvideo").prepend('<div id="videobox"><div class="cap_top">&nbsp;</div><embed src="http://blip.tv/play/'+toLoad+'" type="application/x-shockwave-flash" width="800" height="530" allowscriptaccess="always" allowfullscreen="true"></embed><div class="cap_bottom">&nbsp;</div>');
			$("#screenvideo").fadeIn('normal');	
			$("#dots").hide();
			if(tutdown != undefined){
				$("#screenvideo").append('<a href="'+tutdown+'" id="side_download"></a>');
			}
		});
	});
	
	
	$("#side_goback").click(function(){
		$("#screenvideo").fadeOut('normal');	
		$("#videobox, #side_download").remove();
		$("#dots").fadeIn("normal");
	});
//END DOCUMENT READY
});



