	var openMyModal = function(source)
	{
		modalWindow.windowId = "mugshots_Booking_card";
		modalWindow.width = 830;
		modalWindow.height = 550;
		modalWindow.content = "<iframe id='overlay-frame' width='755' height='500' frameborder='0' scrolling='no' allowtransparency='true' src='" + source + "'>&lt/iframe>";
		modalWindow.open();
	};	
$(function() {
$('#slides a').tooltip({
	track: true,
	delay: 0,
	showURL: false,
	extraClass: "slides"
});
});
$(function() {
$('#slide-box').cycle({ 
    fx: 'scrollHorz', 
	prev: '#slides-prev a',
	next: '#slides-next a',
    after:   onAfter, 
    timeout: 0 
});
});
function onAfter(curr, next, opts) {
    var index = opts.currSlide;
    $('#slides-prev a')[index == 0 ? 'hide' : 'show']();
    $('#slides-next a')[index == opts.slideCount - 1 ? 'hide' : 'show']();
}
