// JavaScript Document

/*
// --------------------------------------------------------------------------
// jQuery.custom.js by orangepointsolutions Ltd., www.orangepointsolutions.de
// --------------------------------------------------------------------------
*/

 $(document).ready(function() {

// playground academy splashbox
    $("#PA_splashbox_teaser").click(function(){ 
        $("div#PA_splashBox").slideToggle("slow");
    });
	
    $("#PA_splashbox_close").click(function(){ 
        $("div#PA_splashBox").slideToggle("slow");
    });

// language selection
    $("#current_language").mouseover(
		function(){ 
        	$("div#languages").slideDown("fast");
    	});
	
	$("#languages ul").bind("mouseleave",function()
		{ 
        	$("div#languages").slideUp("fast");
    	});

// TOGGLE MORE TEXT
    $("img.moretext").click(function(){ 
		// extract id
		var regExpression = /(\w.+)_(\w.+)/;
		regExpression.exec( $(this).attr("id") );
		var myId = RegExp.$2;
        // and action ...
        $(this).toggleClass("lesstext");
        $("div#full_"+myId).slideToggle("normal");
	});
	
// Ausstattung
    $("#holzpferdchen_more").click(function(){ 
        $("#holzpferdchen_toggle").slideToggle("fast");
    });
	
// toggle content initialisation
	$("#full_analytics").hide();
	$("#full_leistungenwerbung").hide();
	$("#full_leistungenconsulting").hide();
	$("#full_leistungenauswahl").hide();
	
// sidebar contact form
	$("#sidebar_contact #label_firma").hide();
	$("#sidebar_contact #input_firma").hide();
	$("#sidebar_contact #input_name").focus(function(){
		$("#sidebar_contact #label_firma").slideDown("slow");
		$("#sidebar_contact #input_firma").slideDown("slow");
	});

 });

// --- end of jQuery.custom.js ---

