$(document).ready(function(){

	/* Services accordian menu */
	$(".service h2").click(function() {
		$(".detail").slideUp();
		$(this).siblings(".detail").slideDown();
	});

	/* Sets all external links to open in seperate browser window */
	$("a").filter(function() {
	    return this.hostname && this.hostname !== location.hostname;
	}).attr('target', '_blank');
	
	/* Cycle banner images */
	$('#banner').cycle({
		random: 1,
		timeout: 7000
	});
});

