$(document).ready(function(){
	/* xhtml valid target=_blank alternative */
	$('a.popup').click(function(){
		window.open($(this).attr('href'));
		return false;
	});
	
	$('#slideshow').cycle({
		speed: 1000,
		timeout: 4000
	});
	
	$('li.parent').mouseover(function(){
		$(this).find('a').addClass('selactive');
	});
	$('li.parent').mouseout(function(){
		$(this).find('a').removeClass('selactive');
	});
});

