$(document).ready(function(){
//Photo
	$("a[rel^='prettyPhoto']").prettyPhoto({
		animationSpeed: 'normal', 
		padding: 40, 
		opacity: 0.65, 
		showTitle: true, 
		allowresize: false, 
		counter_separator_label: '/', 
		theme: 'dark_rounded' /* light_rounded / dark_rounded / light_square / dark_square */
	});
	$("#findRepresentativeButton").click(function() { 
		if (checkForm() == false) {
			return false;
			}
		});
	$("#countryId").change(function() {
		$("#stateItem").hide();
		getStateOptions();
		});
	$("#industryOfferingId").change(function() {
		$("#applicationItem").hide();
		getIndustryApplications();
		});
	//$("#urlHyperlink").click( function() { this.text(); });
});