$(document).ready( function() {
	$(".rollover").bind("mouseenter", function(){
		this.src = this.src.replace(/inactive/,"active");
	}).bind("mouseout",function(){
		this.src = this.src.replace(/active/,"inactive");
	});

  $('a').each(function(i){
    urlObj = String(this.href);
    if (urlObj.indexOf('http')==0 && urlObj.indexOf(location.href.substr(0,20))!=0) {
//      console.log(urlObj);
//      console.log('http indexof: ' + urlObj.indexOf('http'));
//      console.log('http indexof == 0: ' + (urlObj.indexOf('http')==0));
//      console.log('url indexof == 0: ' + (urlObj.indexOf(location.href.substr(0,20))!=0));
      this.onclick = function() { window.open(this.href,'NewCBBainWindow'); return false; }
    }
  });
});
