/** Now why did I have to be the one doing this? **/
//if(is_variant == true)
//{
	$(function(){
		//Grab mcaffe thing
		var r = $("#m").html();
		
		//Remove it from the footer
		$("#m").remove();
		
		//Put it in the header
		$("#account").parent().prepend(r);
		
		//Get the last li in the menu
		r = $("#account li.cart").html();
		
		//Remove that li
		$("#account li.cart").remove();
		
		//Create a new ul in the menu, and add the cart li
		$("#account").append('<ul style="margin-left:5px;"><li class="cart">'+r+'</li></ul><br class="clear" /><span id="weship">We Ship Internationally</span>');
		
		//var css = '#account {float: right;padding: 0 1em;font-size: 88%;width: auto;background:none;}' + '#account ul { background-color: #EBEFE3; padding: 0 0.5em;text-align: right;display: inline-block;vertical-align: top;margin-top: -2px;border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;}' + '#account ul, .mcafee {display: inline-block;vertical-align: top;}'+'#account ul li {display: inline-block;vertical-align: middle;padding: 18px 0px;}'+'#account ul li a {border-right: 1px solid #666666;padding: 0px 10px;display: block;}'+'#weship {text-transform: uppercase;background: #EBEFE3;display: block;text-align: center;padding: 5px;border-radius: 5px;width: 200px;float: right;margin: 0.5em;font-weight: normal;}'+'#account ul li.noborder a { border: 0 }';
		var css = '#account {background:none; float: right;padding: 0; margin-left:1em; margin-right:1em;font-size: 88%;width: auto;}' + '#account ul { float:left; background-color: #EBEFE3; padding: 0 0.5em;text-align: right;display: inline-block;vertical-align: top;margin-top: -2px;border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;}' + '#account ul, .mcafee {display: inline-block;vertical-align: top;}'+'#account ul li {display: inline-block;vertical-align: middle;padding: 18px 0px;}'+'#account ul li a {border-right: 1px solid #666666;padding: 0px 10px;display: block;}'+'#weship {text-transform: uppercase;background: #EBEFE3;display: block;text-align: center;padding: 5px;border-radius: 5px;width: 200px;float: right;margin: 0.5em;font-weight: normal;}'+'#account ul li.noborder a { border: 0 }';

		//Append a new style tag to fix all the css
		$("body").append('<style type="text/css">'+css+'</style>');
		$("#account").css("background", "none");
	});
//}
