//HTML5 Elements---these help the tags display in Internet Explorer

document.createElement('header');
document.createElement('hgroup');
document.createElement('section');
document.createElement('footer');


//FancyBox Script

$(document).ready(function() {
		$("ul.gallery li a").fancybox({
					'overlayShow'  : false,
					'transitionIn' : 'elastic',
					'transitionOut': 'elastic'
				});
						   
	});

//Google Analytics

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-19916511-1']);
  _gaq.push(['_setDomainName', '.iainspad.com']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
