//fancybox
$(function() {
	$("div#showcase a").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'fade',
		'speedIn'		:	600, 
		'speedOut'		:	200,
		'overlayShow'	:	true,
		'overlayColor'		: '#000',
		'overlayOpacity'	: 0.7,
		'padding'			: 0,
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<table id="imgnum" class="fancybox-title-float-wrap" cellpadding="0" cellspacing="0"><tr><td class="fancybox-title-float-left"></td><td class="fancybox-title-float-main">' + (currentIndex + 1) + ' / ' + currentArray.length + '</td><td class="fancybox-title-float-right"></td></tr></table><table id="imgtit" class="fancybox-title-float-wrap" cellpadding="0" cellspacing="0"><tr><td class="fancybox-title-float-left"></td><td class="fancybox-title-float-main">' + (title) + '</td><td class="fancybox-title-float-right"></td></tr></table>';
				}
	});
});
//end of fancybox

//shuffle
$(function() {
      $('#clogo').shuffle();
});
$(function() {
	$("#shuf").click(function() { 
      $('#clogo').shuffle();
    }); 
});
//end of shuffle

//Google Maps
$(function() {
	$("#map").gMap({ 
		latitude: 53.27,
		longitude: -2.53,
		maptype: G_NORMAL_MAP,
		controls: [
			"GSmallZoomControl3D", "GMenuMapTypeControl"
			],
		markers: [{
			latitude: 53.268463
			,longitude: -2.533454
			//,html: "<p>DesignCoUK</p>"
			,icon: {
				image: "http://www.designcouk.com/images/gmapicon_pencil.png",
				shadow: "http://www.designcouk.com/images/gmapshad_pencil.png",
				iconsize: [41, 60],
				shadowsize: [72, 60],
				iconanchor: [19, 57],
				infowindowanchor: [33, 8]
			}
			}] ,
		zoom: 11
	});
}); 
//end of Google Maps
