$(document).ready(function() {//dropdown compatibility for <= IE6
	var ie6 = (typeof document.body.style.maxWidth == "undefined") ? true : false;
        if(ie6) {
            $("#nav li").hover(function() {
                    $(this).addClass("active");
                    if(typeof $(this).find("ul")[0] != "undefined")
                        $(this).find("ul")[0].style.display = "";//prompts IE7- into not bugging
            }, function() {
                    $(this).removeClass("active");
                    $(this).find("ul").hide();//prompts IE7- into not bugging
            });
        }
});

if ($("#homepage").length > 0) {
	$(window).load(function(){
		$("#main").cycle({
			timeout: 6000,
			speed: 2000,
			before: function() {
				panelAction();
			}
		})
	});
}
if ($("#full-image").length > 0) {
	$(document).ready(function() {
		$("#thumbnails").thumbnails("target", "#full-image");
	})
}