﻿$(document).ready(function() {
	// DROP BOXES
	$('.dropdown').click(function(){
		$('.hiddendrop',this).toggle();
		
		var drop = $('.hiddendrop',this);
		
		$(document.body).click(function(e){
			var clicked = $(e.target);
			
			var z = clicked.parents('.dropdown');
			var y = drop.parents('.dropdown');
			
			if((z && y && z.get(0) == y.get(0)))return true;
			
			drop.hide();
		});
		
	});
	
	$('.dropdown .hiddendropbox a').click(function(e){
		e.preventDefault();
		var parent = $(this).parents('.dropdown');
		parent.find('p').html($(this).html());
		parent.find('.hiddendrop').hide();
		
		return false;
	});
	
});
