
/*

	* jQuery plugin: dropdown link for e-commerce site 
	* Author: Alex Gill
	* Created: 11/2010
*/

(function($){
	$.fn.dropdownlink = function(){

		$(".basket .block-content").hide();
		
		var box = $('#box');
		var link = $('#link');
		
		$(".basket").click(function() {
			$(".basket .block-content").show(); return false;
		});
		
		$(document).click(function() {
			$(".basket .block-content").hide();
		});
		
		$(".basket").click(function(e) {
			e.stopPropagation();
		});

	};
})(jQuery);
