$(document).ready(function(){
	
	$(".accordion h3:first").addClass("active");
	$(".accordion p:not(:first)").hide();

	$(".accordion h3").click(function(){
		$(this).next("p").slideToggle("slow")
		.siblings("p:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
	});

});

$(document).ready(function(){
    $("#buy a").click(function() {
        $(this).next("em").animate({opacity: "show", top: "-75"}, "slow");
    });
});

$(document).ready(function(){
    $(".buyMsg .close").click(function() {
		$(this).parents(".buyMsg").animate({opacity: "hide", top: "-75"}, "slow");
    });
});