/*

Script prueft ob Flash verfuegbar und ersetzt dann Text 
in roter Banderolle mit Flash-Text

*/

if (jQuery.browser.flash) {
	// Flash verfuegbar = Flash-Text fuer rote Banderolle
	if(typeof sIFR == "function"){  		
		sIFR.replaceElement(named({sSelector:"span#claim-text", sFlashSrc:"/img25/js/sifr/spdfont.swf", sColor:"#FFFFFF", sBgColor:"#E2001A", sLinkColor:"#FFFFFF", sHoverColor:"#FFFFFF", sWmode: "transparent", nPaddingTop: "0", nPaddingRight: "0", nPaddingBottom: "0", nPaddingLeft: "0"}));		
	}
} else {
	// KEIN Flash verfuegbar = andere Styles fuer rote Banderolle
	jQuery('#claim-link').removeClass('claim-link_flash');
	jQuery('#claim-link').addClass('claim-link_nonflash');
	jQuery('#claim-text').removeClass('claim-text_flash');
	jQuery('#claim-text').addClass('claim-text_nonflash');
}
