$(document).ready(function() {

	$(".drop_down").hide();

	$(".option").click(function(){
		$(".drop_box[id='"+$(this).attr('id')+"']").text($(this).text());
		$(".drop_down[id='"+$(this).attr('id')+"']").hide();
		$("input[id="+$(this).attr('id')+"]").val($(this).text());
	});

	$(".drop_box").click(function(){
		$(".drop_down[id='"+$(this).attr('id')+"']").toggle();
	});
	
	$(".size_drop_down").hide();

	$(".size_option").click(function(){
		$(".size_drop_box[id='"+$(this).attr('id')+"']").text($(this).text());
		$(".size_drop_down[id='"+$(this).attr('id')+"']").hide();
		$("input[id="+$(this).attr('id')+"]").val($(this).text());
	});

	$(".size_drop_box").click(function(){
		$(".size_drop_down[id='"+$(this).attr('id')+"']").toggle();
	});

});
