$(function(){

	$('a[rel~=blank],a[rel~=external]').each(function(){
		$(this).attr('target', '_blank');
	});
	
	/* intro */
	$('#index.intro').flash({
		src: DEFAULT_URL + 'swf/intro.swf',
		width: '100%',
		height: '100%',
		wmode: 'opaque',
		flashVars: {		
			link_home: DEFAULT_URL + 'index'
		}
	});

});

//ie6 fixes =/
if($.browser.msie && parseInt($.browser.version) < 7)
{
	//image flickr
	try{document.execCommand('BackgroundImageCache', false, true)}catch(e){};
}
