if (top.frames.length > 0) {
	top.location=self.location;
}
$(document).ready(function() {
	$('a[rel=lightbox]').lightBox();
	
	/* Menu-fix */
	$("#nav-one ul").hide();	
    $("#nav-one li").hover(
        function(){ $("ul", this).fadeIn("fast"); }, 
        function() {} 
    );
    if (document.all) {
        $("#nav-one li").hoverClass ("sfHover");
    }
    if($('.slideshow').length > 0) {
	    $('.slideshow').cycle({
			fx: 'scrollLeft' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		});    
	}
});
$.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover( 
            function() { $(this).addClass(c);},
            function() { $(this).removeClass(c); }
        );
    });
};
