/*

 * byo - 2008

 * cdprint

 */



// DomReady - v1 //////////////////////////////

window.addEvent('domready', function() {

		base.externalLinks();
});

// DomReady //////////////////////////////

var base = {
	
	/////vars////////
			_overlay : null,
	/////vars//////
	//////////////////////////////////////////////////////////////////////////////
/*externalLinks*/	

	externalLinks : function (){
	 //check support of DOM1
		 if (!document.getElementsByTagName) return;
		 
		 //get list of a tags in the document
		  var anchors = document.getElementsByTagName("a");
			 
			 for (var i=0; i<anchors.length; i++) {
			   var anchor = anchors[i];
				   if (anchor.getAttribute("href") &&
					   anchor.getAttribute("rel") == "external")
					  
					   anchor.target = "_blank";
			
			 }
	},
	//////////////////////////////////////////////////////////////////////////////
/* *externalLinks*/

//////////getRandom
	getRandom : function(nums){
		
		 var ranNum= Math.round(Math.random()*nums);
		 return ranNum;
		 
	 },

 
	 ///////initHSscript
	initHSscript : function(){
		
	
		
	},
 ///////initAlbum	
	initAlbum : function(){
		
		hs.graphicsDir = baseurl + '/assets/hs_includes/graphics/';
		hs.showCredits = false;
		hs.dimmingOpacity = 0.75;
		hs.align = 'center';
		hs.outlineWhileAnimating = true;
	
	$$('.popupvideo').addEvent("click", function(event) {

		window.open(this.href, this.target, 'width=290,height=220,left=100,top=100');
        return false;
      });
	
	}
	
	
}



