$(document).ready(function(){
	$('#getquote').submit(function(){
		if($('#name').val()=="" || $('#email_address').val()==""){
			alert('Please be sure to complete all required fields before continuing.');
			return false;
		}
	})
	$('#recentwork a').click(function(e){
		e.preventDefault();
		var img = this.href
		$('body').prepend('<div id="matte"><div id="large_image"><img src="'+ img +'" /><a href="#"></a></div></div>');
		$('#matte').hide().fadeIn();
		$('#matte, #matte *').click(function(f){
			f.preventDefault();
			$('#matte').remove();
		})
	})
	 $(function(){
	            //initially hide the textbox
	            $("#attachment").hide();
	            $('#item_type').change(function() {
	              if($(this).find('option:selected').val() == "Custom Artwork"){
	                $("#attachment").show();
	              }else{
	                $("#attachment").hide();
	              }
	            });
	            $("#attachment").keyup(function(ev){
	                  var customOption = $('#item_type').find('option:selected');
	                  if(customOption.val() == "Custom Artwork"){
	                    ev.preventDefault();
	                    //change the selected drop down text
	                    $(customOption).html($("#attachment").val()); 	
	                  } 
	            });
	        });
})
