function sH(h, shouldMove){
	var ths = shouldMove ? 500 : 0;
	ths = 0;
	if (!h){
		h = "#company";
	}else{
		$(".selected").hide(ths);
		$(".selected").removeClass("selected");
		$(h).show(ths);
		$(h).addClass("selected");
		setTimeout("window.scrollTo(0,1);", ths);
	}
}

$(document).ready(
function (){
    sH(window.location.hash ,false);
    $(".nav li a, a.frame").click(function(){
        var h=this.hash; 
	sH(h, true);
	return false;
    });
    $(".solution h3").click(function(){
	$(this).parent().children(".expand").slideToggle(500);
    });
    $("a.external").attr("target", "_blank");
    var agent = navigator.userAgent.toLowerCase();
    if (agent.indexOf("safari")<0 || agent.indexOf("linux") > 0){
	$("#interVideoDiv").html('<a href="rtsp://bouc.vizionr.fr/inter.sdp"><img src="media/slideshow_inter.png"/><br/>Video RTSP</a>');
    }
}
);

