$(document).ready(function(){
	init_tooltip();
	shiny();
	feedback_form();
	fbbox();
});

function init_tooltip(){
	$('#quick_help a[title]').qtip({ 
		style: { name: 'dark', width: 380, 'font-size': '0.8em', tip: true, border: {width: 3, radius: 8}},
		position: { corner: { target: 'rightMiddle', tooltip: 'leftMiddle' } }
	});
	
	$('#content #meta a#quick_help[title]').qtip({ 
		style: { name: 'dark', width: 380, 'font-size': '0.8em', tip: true,	border: {width: 3, radius: 8}},
		position: { corner: { target: 'topMiddle', tooltip: 'bottomMiddle' } } 
	});
}

function shiny() {
	$("img.shiny").hover( 
		function () { $(this).addClass("hover"); },
	  	function () { $(this).removeClass("hover"); }
	);
	
	$("img.shiny_tiny").hover( 
		function () { $(this).addClass("hover"); },
	  	function () { $(this).removeClass("hover"); }
	);
}

  
function fbbox(){
	/*
	$("#fbbox_send_feedback").click(function() {
		$('#fbbox_send_feedback').attr("disabled", true);
		
		content = $("#fbbox_textarea_feedback").val();
		
		//prüfe ob ausgefüllt
		$.post("http://lernenhoch2.de/wp-content/themes/lernenhoch2_main/feedback/fbbox_send_fb.php", { content: content}, function() {
			$("#fbbox").html("<div style=\"text-align: center; font-size: 1em; font-weight: bold; font-family:Georgia; color: #555;\">Vielen dank für dein Feedback!</div>");
		});	
		
		return false;
	});
	*/
}