
// jQuery Forum
// by Daniele De Nobili


// jQuery Ready
$(document).ready(function(){

	// Media Flash (ovvero???)
	$('a.bannerflash').media({
		params: { wmode: 'transparent' },
		width:		468,
		height:		60,
		type:		'swf',
		caption: 	false
	});
	$('a.bannerflash276x79').media({
		params: { wmode: 'transparent' },
		width:		276,
		height:		79,
		type:		'swf',
		caption: 	false
	});
	$('a.bannerflash550x90').media({
		params: { wmode: 'transparent' },
		width:		550,
		height:		90,
		type:		'swf',
		caption: 	false
	});

	// Spoiler
	$(".spoiler dt").click(function(){
		$(this).next("dd").toggle();
	});

	// Link esterni
	$("a[rel=external], a.postlink").attr("target", "_blank");

});

