// JavaScript Document
jQuery(document).ready(function($){

	$('a[rel=external]').attr('target', '_blank');

	if(FlashDetect.installed) {
		
		if (FlashDetect.majorAtLeast(10)) {
			jQuery('#logo').media({
				
				width: "232",
				height: "160",
				src: URL_BASE + "swf/logo.swf",
				autoplay: true,
				caption: false,
				attrs: { id: 'logo'},
				params: {
					quality: "high",
					bgColor: "#E4EFF5",
					wmode: "transparent",
					AllowScriptAccess: "always"
				}
			});
			
		}
		
	}
});
