$("html").addClass("js");
$(function() {
$("#subMenu").accordion({initShow : "ul.current"});
$("html").removeClass("js");
});

/* slideShow */
$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade',
		timeout: 3000,
	});
});

/* Infobulle */
$(document).ready(function() {
$('a.tTip').tinyTips('title');
$('a.imgTip').tinyTips('<img src="images/demo-image.jpg" /><br />You can even put images or any other markup in the tooltips.');
$('img.tTip').tinyTips('title');
$('h1.tagline').tinyTips('tinyTips are totally awesome!');
});








