$(document).ready(function(){
	smartRollover();
	pageScroll('.to-top','#container');
	if($(".table-type4")){
		zebra();
	}
	/*var nav = document.getElementById("nav");
	var set = nav.getElementsByTagName("a")[0];
	set.href = "javascript:void(0)";
	
	$("#nav > li:first").click(function(){
	window.open("http://www.solariastage.com/floor/index.php","win","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=1020,height=750");
	});*/
	
});


function smartRollover(){  
    if(document.getElementsByTagName) {  
        var images = document.getElementsByTagName("img");  
        for(var i=0; i < images.length; i++) {  
            if(images[i].getAttribute("src").match("_off."))  
            {  
                images[i].onmouseover = function() {  
                    this.setAttribute("src", this.getAttribute("src").replace("_off.", "_on."));  
                }  
                images[i].onmouseout = function() {  
                    this.setAttribute("src", this.getAttribute("src").replace("_on.", "_off."));  
                }  
            }  
        }  
    }  
}

function pageScroll(trg,target){
    $(trg).click(function () {
        $(this).blur();
        $('html,body').animate({ scrollTop: $(target).offset().top }, 'fast');
        return false;
    });
}


function zebra(){
	$(".table-type4 tr:odd").addClass("zebra");
}