// slideshow
function slideSwitch() {
	var $active = $('.slideshow img.active');
	if ( $active.length == 0 ) $active = $('.slideshow img:last');
	var $next =  $active.next().length ? $active.next()
		: $('.slideshow img:first');
	$active.addClass('last-active');
	$next.css({opacity: 0.0})
		.addClass('active')
		.animate({opacity: 1.0}, 1000, function() {
			$active.removeClass('active last-active');
		});
}
$(function() {
	setInterval( "slideSwitch()", 3000 );
});

// tooltip
$(document).ready(function() {
	$('a#opening[rel=tip]').qtip({
		content: { 
			text: '<strong>Mon-Fri</strong> 8.30am - 6pm<br /><strong>Saturday</strong> 9.00am - 1pm<br /><strong>Sunday/Bank Holidays</strong> Closed',
		title: { 
			text: 'Opening Hours' }
		},
		style: {
			tip: 'bottomMiddle',
			color: 'white',
			background:'#117e06',
			name: 'green',
			border: {
				 width: 3,
				 radius: 8,
				 color: '#117e06'
			  },
		},
		position: {
			corner: {
				target: 'bottomMiddle',
				tooltip: 'bottomMiddle'
				},
			adjust: { 
				x: -61,
				y: -40 
				}
			}
	});
});
