$(document).ready(function () {
	
	 $('#basketButton').click (function() {
			if(typeof($(this).attr('rel')) == 'undefined' || $(this).attr('rel') != 1){
				$("#basketText").animate({height: "show"}, 300);
				$(this).attr('rel', 1);
			}else{
				$("#basketText").animate({height: "hide"}, 300);
				$(this).attr('rel', 0);
			}
	 });
});
