	$(function() {
		$("#contact").dialog({
			bgiframe: true,
			width: 960,
			height: 530,
			modal: true,
			autoOpen: false,
			title: 'Contact Inspire For Your Next Project'
		});
		$('.contact-us').click(function() {
			$('#contact').dialog('open');
		});
		$("#certification").dialog({
			bgiframe: true,
			width: 300,
			height: 270,
			modal: true,
			autoOpen: false,
			title: 'What Is ProStores Certification?'
		});
		$('.ps-certified').click(function() {
			$('#certification').dialog('open');
		});
		$(".formfield").mouseover(function(){
      		$(this).css("background-color","#dbf9b1")
    	}).mouseout(function(){
      		$(this).css("background-color","#ffffff");
    	});
	});