// JavaScript Document
// CMS POPUP
<!--
	function popImageGalery(url, width, height, scrollbars, resizable, left, top)
	{
	// set up defaults
	if (width == null) width = 430;
	if (height == null) height = 450;
	if (scrollbars == null) scrollbars = "yes";
	if (resizable == null) resizable = "no";
	if (left == null) left = 0;
	if (top == null) top = 0;
	
	popup=window.open(url,"","width="+width+",height="+height+",scrollbars="+scrollbars+", left="+left+", top="+top+", resizable="+resizable+"");
	}
// -->

//Changes made by Matt@bv02.com 

document.observe("dom:loaded", function() {
  // initially hide all containers for tab content
 
$$('.text').invoke('hide');

$$('.colsCollections li').invoke('setStyle', { height: '202px'});
$$('.colsCollections .text li').invoke('setStyle', { height: 'auto'});
 
 
  $$('.pic').invoke('observe','mouseover', function(element) {
	 testme = this.next();

	
	Tip(testme.innerHTML)
 
  
 }); 
 
 
 $$('.pic').invoke('observe','mouseout', function(element) {
UnTip()


  
 }); 
 
 
  
});




