


var slideit = {

    alphaButton: function (q) {

        $(q).mouseover(function () {

            $(this).stop().animate({ opacity: 0.7 }, 250);

        }).mouseout(function () {

            $(this).stop().animate({ opacity: 1 }, 250);

        });
    },

    openIframe: function (q) {

        $(q).colorbox({ iframe: true, innerWidth: 650, innerHeight: 450 });
    
    }
};


/*var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-4759654-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);
  })();*/
