// Fade===============================================================================

setInterval( function () {

// this is the element you want to blink
var box = $("#tour-2");

if (box.data("fade") === 1) {
box.fadeIn().data("fade", 2);
} else {
box.fadeOut().data("fade", 1);
}
}, 1500)

// menu===============================================================================

// initialise plugins
jQuery(function(){
	jQuery('ul.sf-menu').superfish();
});

$("*").find("a[href='"+window.location.href+"']").each(function(){
	$(this).addClass("current")
})
