﻿/* Home Page Billboard */

$(function() {
	$(".slidetabs").tabs(".images > div", {
		// enable "cross-fading" effect
		effect: 'fade',
		fadeOutSpeed: 'slow',
		autopause: true,
		// start from the beginning after the last tab
		rotate: true
	// use the slideshow plugin. It accepts its own configuration
	})
	.slideshow({
		autoplay: true,
		interval: 6000
	});
});

// JScript File
function clickButton(e, buttonid){
    var evt = e ? e : window.event;
    var bt = document.getElementById(buttonid);
    if(bt){
        if(evt.keyCode == 13){
            bt.click();
            return false;
        }
    }
}

// Scripts added for homepage
function cImageOver(contain1, imgname, imgloc){
	document[imgname].src=imgloc;
	contain1.style.borderRight='2px solid #CCC';
}
function cImageOut(contain1, imgname, imgloc){
	document[imgname].src=imgloc;
	contain1.style.borderRight='0px solid #CCC';
}

function realPDFLink(ele, doc){
    //location.href = "http://now.minco.com/elqNow/elqRedir.htm?ref="+doc;
    //location.href = "http://now.eloqua.com/elqNow/elqRedir.htm?ref="+unescape(doc);
    //location.href = "/elqNow/elqRedir.htm?ref="+unescape(doc);
    document.getElementById(ele).href="/elqNow/elqRedir.htm?ref="+doc;
}
