//<!-- initialise Superfish -->
$(document).ready(function(){
	$(".inputTypeSubmit").hover(
			function () { $(this).addClass("hover");}, 
			function () { $(this).removeClass("hover");
	});
	
	$(".tooltip").tooltip({

	    // place tooltip on the right edge
	    position: "bottom center",

	    // a little tweaking of the position
	    offset: [0, 0],

	    // use the built-in fadeIn/fadeOut effect
	    effect: "fade",

	    // custom opacity setting
	    opacity: 1,

	    // use this single tooltip element
	    tip: '#tooltip'

	});
	$(".tooltip2").tooltip({

	    // place tooltip on the right edge
	    position: "bottom center",

	    // a little tweaking of the position
	    offset: [0, 0],

	    // use the built-in fadeIn/fadeOut effect
	    effect: "fade",

	    // custom opacity setting
	    opacity: 1,

	    // use this single tooltip element
	    tip: '#tooltip2'

	});
    /*$(".centerColumn_left ul").superfish({
        animation: {height:'show'},   // slide-down effect without fade-in
        delay:     100              // 1.2 second delay on mouseout
    });*/

    $("ul.footage_navbar").superfish({
        animation: {height:'show'},   // slide-down effect without fade-in
        delay:     100            // 1.2 second delay on mouseout
    });


});
function getOneClassedDiv(classname, text)
{
	return '<div class="'+classname+'">'+text+'</div>';
}

