$(document).ready(function(){

	// rollovers
		PEPS.rollover.init();

	// PNG tranparency for IE6
	$('.png').pngfix();
	
	// set div links
	jQuery(".link").click( function(){
		window.location=jQuery(this).find("a").attr("href"); return false;
	});
	// external links
	jQuery("a[@rel='external']").click( function() {
	window.open( jQuery(this).attr('href') );
	return false;
	});
	// Flash for homepage
	$('#home_flash').flash(
	    { src: 'video/europa.swf',
		width: 964,
    	height: 307,
		wmode: 'transparent'},
 		{ version: '9' }
		);	
});