// Allow targeting of specific browsers - http://rogieking.com/post/9089341529/html5boilerplatejs
var b = document.documentElement;
b.setAttribute('data-useragent',  navigator.userAgent);
b.setAttribute('data-platform', navigator.platform );


$(document).ready(function(){
	
// jquery.scale9grid-0.9.3.min.js
	$('#main').scale9Grid({top:90,bottom:80,left:95,right:140});
	
// preloadCssImages.jQuery_v5.js
	$.preloadCssImages();
	
	
// flicker animation on homepage
	$('.flicker-animate').click(function(){
		$(this).toggleClass('playing');
	});
	
	
// jquery.cycle.lite.js
	$('#quotes').cycle({
		fx: 'fade',
		timeout: 5000, 
	    pause: 1 
	});
	
	

// Google Analytics tracking code
	var _gaq = _gaq || [];
	_gaq.push(['_setAccount', 'UA-27058418-1']);
	_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);
	})();


});

