$(document).ready(function(){

	// --> Init Cufon Top Main Menu				   
	if($.browser.name == "msie" && $.browser.versionX <= "7"){
		$('ul.topnav>li>a').wrapInner('<bdo style="direction:ltr; width:100%;"></bdo>');
	}else{
		$('ul.topnav>li>a').wrapInner('<bdo style="direction:ltr; float:right;"></bdo>');
	}
	
	// --> Init Cufon Headings				   
	if($.browser.name == "msie" && $.browser.versionX <= "7"){
		$('h1.heading, h2.heading, h3.heading, h4.heading').wrapInner('<bdo style="direction:ltr; width:100%;"></bdo>');
	}else{
		$('h1.heading, h2.heading, h3.heading, h4.heading').wrapInner('<bdo style="direction:ltr; float:right;"></bdo>');
	}
	
	// --> Init Cufon Buttons			   
	if($.browser.name == "msie" && $.browser.versionX <= "7"){
		$('div.content a.button, div.content a.button2, div.content a.button5, div.content a.button3, .filter-form a.sbutton').wrapInner('<bdo style="direction:ltr; width:100%;"></bdo>');
	}else{
		$('div.content a.button, div.content a.button2, div.content a.button5, div.content a.button3, .filter-form a.sbutton').wrapInner('<bdo style="direction:ltr; float:right;"></bdo>');
	}
	
	// --> Init Cufon Badge			   
	if($.browser.name == "msie" && $.browser.versionX <= "7"){
		$('span.badge').wrapInner('<bdo style="direction:ltr; width:100%;"></bdo>');
	}else{
		$('span.badge').wrapInner('<bdo style="direction:ltr; float:right;"></bdo>');
	}
	
	
	Cufon.replace('bdo', {
		fontFamily: 'MetaliMedium', 
		hover: true, 
		hoverables: { strong: true, em: true, bdo: true }, 
		//separate: 'characters',
		ignoreClass: 'subtitle' 
	});
	
	$('bdo').each(function(){
		var word = $(this).text();
		var splittext = word.split("");
		var reversedtext = splittext.reverse();
		var newtext = reversedtext.join("");
		$(this).text(newtext);
	});

});

