﻿//CONTROLLING EVENTS IN jQuery
$(document).ready(function()
{
	$("a#terms_popup").click(function()
	{
        $('#popupTerms').slideToggle("slow");
        return false;	
    });
    
    $("div.AdditionalItemsContainer a").click(function()
    {
        var linkClass = $(this).attr('class');
        $("div.basketAdditionalItems_" + linkClass).slideToggle("slow");
        return false;
    });
});