var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-19031018-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);
  })();

$('document').ready(function() {
	document.onmousedown=noway;
    $(document).pngFix();
    $(window)
    .scroll(function() {
        var tTop = $(window).scrollTop();
        $('#flashBGContainer')
        .css('top', tTop);
    });
});

// distributed by http://hypergurl.com <!-- var popup="Sorry, right-click 
var popup = "Oops! Right clicking on this site is not allowed.";
function noway(go) {
	if (document.all) {
		if (event.button == 2) {
			alert(popup);
			return false;
			}
		}
	if (document.layers) {
		if (go.which == 3) {
			alert(popup);
			return false;
		}
	}
}
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}
