$(document).ready(function(){
	
	$('.box_a').Draggable(
		{
			ghosting:	false,
			opacity:	0.5
		}
	);
	
	$('.gallery').Draggable(
		{
			ghosting:	false,
			opacity:	0.5
		}
	);
	

	$.ImageBox.init(
		{
			loaderSRC: 'img/loading.gif',
			closeHTML: '<a id="imagebox_close" herf="javascript:;" onfocus="blur();">Galerie schließen</a>',
			textImage: 'Bild',
			textImageFrom: 'von'
		}
	);

	
	$("#hidecontent").click(function() {
		if ( $(this).is('.visible') ) {
			$(this).attr("class", "hidden");
			$(".box_a").fadeOut("slow");
			$("a.gallery").fadeOut("slow");
		}
		else if ( $(this).is('.hidden') ) {
			$(this).attr("class", "visible");
			$(".box_a").fadeIn("slow");
			$("a.gallery").fadeIn("slow");
		}
	});
	
	
	$("#button_h1").mouseover(function() {$("#tb_3b").attr("class", "draggable box_a").addClass("h1");});
	$("#button_h2").mouseover(function() {$("#tb_3b").attr("class", "draggable box_a").addClass("h2");});
	$("#button_h3").mouseover(function() {$("#tb_3b").attr("class", "draggable box_a").addClass("h3");});
	$("#button_h4").mouseover(function() {$("#tb_3b").attr("class", "draggable box_a").addClass("h4");});
	$("#button_h5").mouseover(function() {$("#tb_3b").attr("class", "draggable box_a").addClass("h5");});
	
	
	$("#button_h1").mouseover(function() {$("#tb_9b").attr("class", "draggable box_a").addClass("h1");});
	$("#button_h2").mouseover(function() {$("#tb_9b").attr("class", "draggable box_a").addClass("h2");});
	$("#button_h3").mouseover(function() {$("#tb_9b").attr("class", "draggable box_a").addClass("h3");});
	$("#button_h4").mouseover(function() {$("#tb_9b").attr("class", "draggable box_a").addClass("h4");});
	$("#button_h5").mouseover(function() {$("#tb_9b").attr("class", "draggable box_a").addClass("h5");});
	
});

