
/* javascript initialization for slideshow  */
var myShow;
window.addEvent('domready', function(){
var data = {
  '1.jpg': { caption: '', href: 'http://www.cockpitusa.com/store/home.php?cat=403' }, 
  '2.jpg': { caption: '', href: 'http://www.cockpitusa.com/store/home.php?cat=425' }, 
  '3.jpg': { caption: '', href: 'http://www.cockpitusa.com/catalog/page1.php' }, 
  '4.jpg': { caption: '', href: 'javascript:popupurl();' },
  '5.jpg': { caption: '', href: 'javascript:openPageTergateBlank("http://cockpitusa.wordpress.com/");' }
};
myShow = new Slideshow('show', data, {captions: false, preload: true, fast:true, controller: false, height: 318, hu: 'images/', thumbnails: false, loader: false, width: 952, duration: 2000, delay: 4000});
});

	  
function goNext() {
	
myShow.next();
		
}

function goPrev() {
	
myShow.prev();

}

function go(n) {
	
myShow.go(n);

}

function popupurl(){
//	alert('hjbhfsdf');
	document.getElementById("commu_popup").style.display="block";
//	alert('hjbhfsdf,hsdf');
	}
function commu_popup_close(){
	document.getElementById("commu_popup").style.display="none";
	}
function openPageTergateBlank(p)	{
	window.open(p,'_blank');

	}