jQuery(document).ready(function() {
		jQuery('a[name="tour"]').each(function() {
				jQuery(this).addClass('tour');
				jQuery(this).css('cursor', 'pointer');
				jQuery(this).bind('click', function() {
						window.open('/videos/tour.phtml?tour=' + jQuery(this).attr('title').substring(0), 'tour' + (Math.floor(Math.random()*10000)),'status=0, toolbar=0, location=0, menubar=0, directories=0, resizable=1, scrollbars=0, height=600, width=620');
						//window.open('/videos/tour.phtml?tour=' + jQuery(this).attr('title').substring(0), 'tour' + (Math.floor(Math.random()*10000)),'status=0, toolbar=0, location=0, menubar=0, directories=0, resizable=1, scrollbars=0, height=430, width=630');
						//window.open('/js/tour.phtml?tour=' + jQuery(this).attr('title').substring(0), 'tour','status=0, toolbar=0, location=0, menubar=0, directories=0, resizable=1, scrollbars=0, height=430, width=630');
						return false;
				});
		});
});
