// JavaScript Document
jQuery(document).ready ( function() {
  jQuery(document).bind('click', function(e) {
  		var $clicked=$(e.target);
		if($clicked.is('#select')){
			jQuery("#options").css("display","block");
		}
		else{
			if($clicked.is('#contact-click')){
				jQuery("#options-contact").css("display","block");
			}
			else{
				jQuery("#options").css("display","none");
				jQuery("#options-contact").css("display","none");
			}
		}
    }
  );
  jQuery("#options .option").bind('click', function(e) {
  		var value = jQuery(this).attr("title");
  		var html = jQuery(this).html();
		document.getElementById("modelHidden").value = value;
		document.getElementById("select").innerHTML = html;
    }
  );
  jQuery("#options-contact .option").bind('click', function(e) {
  		var value = jQuery(this).attr("title");
  		var html = jQuery(this).html();
		document.getElementById("contact-mail").value = value;
		document.getElementById("contact-click").innerHTML = html;
    }
  );
});