function require(jspath) {
    document.write('<script type="text/javascript" src="'+jspath+'"><\/script>');
}
require("js/jquery.effects.core.js");
require("js/jquery.effects.highlight.js");
require("js/jquery.simpletip.min.js");

//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);
	});
});

