$().ready(function() {
	
	// Accordion 
	if ($( ".accordion" ).length){
        $(".accordion").accordion({autoHeight:false, active: false, collapsible: true });
	}
	
	// Manipulate Umbraco's image alignment
	$('#content img').each(function(e) {
		if ($(this).css('float') == 'left') {
			$(this).addClass('left');	
		}
		else if ($(this).css('float') == 'right') {
			$(this).addClass('right');
		}
	});
	
	/* 
	 * 
	 * Enquire Online
	 * 
	 * * * * * * * * * * * * * * * * * * * * */
	
	$('.enquire a').toggle(function() {
		$(this).text('Close / Hide');
		$('#header').animate({
			marginTop : '0'
		}, 1000);
	}, function() {
		$(this).text('Request a Free Appointment');
		$('#header').animate({
			marginTop : '-=250px'
		}, 1000);
	});


});
