// JavaScript Document
$(document).ready(function(){
	//for employment application
	$("#jobs h3").click(function(){
		$(this).next("div").slideToggle("slow");
	});
	
	//for rates
	$("#rates h3").click(function(){
		$(this).next("div").slideToggle("slow");
	});
	
	//for holidays
	$("#holidays h3").click(function(){
		$(this).next("div").slideToggle("slow");
	});
	
	//for deal(s) of the month
	$("#deals h3").click(function(){
		$(this).next("div").slideToggle("slow");
	});
});
