//contactform.js
(function($) {
	$(function() {
		$($('.home .rightContent h2')[0]).before(
			'<form action="contact-us.php" method="post" class="contact-form">' +
        	'	<input type="hidden" name="hidSubmit" value="1" />' + 
			'	<div class="title">Contact us for any questions</div>' +
			'	<div class="field name"><label for="txtName">Your Name:</label><input type="text" name="txtName" value="" /></div>' +
			'	<div class="field email"><label for="txtEmail">Email:</label><input type="text" name="txtEmail" value="" /></div>' +
			'	<div class="field">' +
			'		<label for="ddlService">Service:</label>' +
			'		<select name="ddlService">' +
			'			<option value="">Choose One:</option>' +
			'			<option value="Confidence Coaching">Confidence Coaching</option>' +
			'			<option value="Counselling For Individuals">Counselling For Individuals</option>' +
			'			<option value="Counselling Relationships">Counselling Relationships</option>' +
			'			<option value="Executive Coaching">Executive Coaching</option>' +
			'			<option value="Hypnotherapy">Hypnotherapy</option>' +
			'			<option value="Marriage Counselling">Marriage Counselling</option>' +
			'			<option value="Phone Counselling Services">Phone Counselling Services</option>' +
			'			<option value="Psychotherapy">Psychotherapy</option>' +
			'			<option value="Relationships Counselling">Relationships Counselling</option>' +
			'		</select>' +
			'	</div>' +
			'	<div class="field area"><label for="txtEnquiry">Comments/ Questions:</label><textarea name="txtEnquiry"></textarea></div>' +
			'	<input type="submit" value="Submit" />' +
			'</form>'
		);
	});
})(jQuery);
