$(document).ready(function(){
	$("#bewertung").raty({
		start: startb,
		click: function(score, evt) {
    		//alert('ID: ' + this.attr('id') + '\nscore: ' + score + '\nevent: ' + evt);
			$.post("ajax/rate.php", {score: score, vid: vid}, function(data){
				if(data == 1){
					//alert("gespeichert");
					}
				});
			}
		});
	$("#navul li").hover(
		function(){
			$(this).children(".subul").show();
			$(".subul li").hover(
				function(){
					$(this).children(".subsubul").show();
					},
				function(){
					$(this).children(".subsubul").hide();
					}
				);
			},
		function(){
			$(this).children(".subul").hide();
			}
		);
	//*
	$("#bewertung").hover(
		function(){
			$("#ihreb").show();
			},
		function(){
			$("#ihreb").hide();
			}
		);
	$("#comfunc h3").click(
		function(){
			$("#comform").slideToggle();
			}
		);
	$("#recommend").click(
		function(){
			$("#recobox").slideToggle(200);
			}
		);
	//*/
	});
