function require(jspath) {
    document.write('<script type="text/javascript" src="'+jspath+'"><\/script>');
}
require("/static/js/jquery.effects.core.js");
require("/static/js/jquery.effects.highlight.js");
require("/static/js/jquery.simpletip.min.js");

//SFIR
var futura = {
	src: '/static/flash/futura.swf'
};
sIFR.activate(futura);
sIFR.replace(futura, {
	selector: 'h1',css: [
		'.sIFR-root { text-align: left; color: #ffffff; }'
		,'.sIFR-root .alt { text-align: left; color: #333333; }'
		,'a { text-decoration: none; }'
		,'a:link { color: #ffffff; }'
		,'a:hover { color: #ffffff; }'
	]
	,wmode: 'transparent'
});

//jQuery Drop Shadow Text
$(".btn-font").html('<div class="textshadow">'+$(".btn-font").html()+'</div><div>'+$(".btn-font").html()+'</div>');

//JQuery Effects
$(document).ready(function(){
	$(".action-update-cart").click(function () {
		$(".panel-minicart").effect("highlight", {}, 500);
		$(".eball").animate({
			"top": "20px",
			opacity: 0.0
		}, 500).animate({
			"top": "-250px",
			opacity: 1.0
		}, 0);
		$(".carticon").animate({
			opacity: 1.0
		}, 300).animate({
			"top": "2px"
		}, 100).animate({
			"top": "0"
		}, 100);
	});
});
