// JavaScript Document
//
//$(document).ready(function(){
//
//	$('.dropdowns').each(function()
//	{
//		var el= $(this);
//
//		if(el.hasClass('dropdowns'))
//		{
//
//			el.click(function(){
//
//
//				$('.dropdownmenu').each(function()
//				{
//					var el2 =$(this);
//
//					if(el.attr('id') + "_choices"!=el2.attr('id'))
//					{
//						el2.css('display', 'none');
//					}
//
//				});
//				$("#" + el.attr('id') + "_choices").toggle();
//
//			});
//
//		}
//	});
//});

function sp (event){
	event.stopPropagation();
}

$(function(){


});
