$(document).ready( function(){
    $('.rounded').corners("10px");
	try{$('.NewsItem').corners("10px");} catch (err) {}
	$('.roundedseparator').corners("3px");
    $('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	try{$("a.zoom").fancybox();} catch (err) {}
	try{
		$('.slideshow2').cycle({
			fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		});
	} catch (err){}
	try{		
		$('#ViewMapLink').qtip({
		 content: {
			 text:'<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=44+Jamaica+Street+Glasgow+G1+4QG&amp;sll=55.865627,-4.257223&amp;sspn=0.143717,0.488205&amp;ie=UTF8&amp;hq=&amp;hnear=44+Jamaica+St,+Glasgow,+Lanarkshire+G1+4QG,+United+Kingdom&amp;ll=55.857082,-4.255486&amp;spn=0.004492,0.015256&amp;z=16&amp;output=embed"></iframe><br /><small><a href="http://www.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=44+Jamaica+Street+Glasgow+G1+4QG&amp;sll=55.865627,-4.257223&amp;sspn=0.143717,0.488205&amp;ie=UTF8&amp;hq=&amp;hnear=44+Jamaica+St,+Glasgow,+Lanarkshire+G1+4QG,+United+Kingdom&amp;ll=55.857082,-4.255486&amp;spn=0.004492,0.015256&amp;z=16" style="color:#0000FF;text-align:left">View Larger Map</a></small>'
		 },
		 style: { 
			width: 455,
			height: 350,
			padding: 5,
			background: '#250d0b',
			color: '#ffffff',
			textAlign: 'left',
			border: {
			   width: 1,
			   radius: 10,
			   color: '#0c7092'
			},
			tip: 'topMiddle',
			name: 'dark' // Inherit the rest of the attributes from the preset dark style
		 },
		 position: {
			corner: {
				target: 'bottomLeft',
				tooltip: 'topMiddle'
			},
			adjust: {
				x: 60,
				y: -10
			}
		 },
		 show: {
			when: {event: 'click'} 
		 },
		 hide: {
			when: {event: 'click'}
		 }
		});		
	} catch (err){}
});

var MapLinkActive = false;
function ViewMap(){
	if (MapLinkActive == true) {
		MapLinkActive = false;
		document.getElementById('ViewMapLink').innerHTML = "<img src='Resources/Images/AddressDetailsHideMap.gif' width='460' height='75' alt='HIDE MAP - Tel: 0141 221 0767, Address: 44 Jamaica Street, Glasgow, G1 4QG' border='0'/>";
		
	} else {
		MapLinkActive = true;
		document.getElementById('ViewMapLink').innerHTML = "<img src='Resources/Images/AddressDetailsShowMap.gif' width='460' height='75' alt='SHOW MAP - Tel: 0141 221 0767, Address: 44 Jamaica Street, Glasgow, G1 4QG' border='0'/>";
		
	}
}