﻿/**
 * Author:  colin-michael.com <colin.d.michael@gmail.com>
 * Project: Scale-Hobbies.com
 * Version: 2011.01.31.1
 */

/** Break out; be your own site */
if(top.location != self.location) {
    top.location.replace(self.location);
}

/** jQuery */
$(document).ready(function() {

/** External Website */
    $('a[href^="http"]')
      .attr({
        target: "_blank",
        title: "This link directs you to an external website"
    });

/** Make accordion */
    $(function() {
        $("#accordion").accordion();
    });

/** Make page visible after accordion is ready */
    $('#content').css({'visibility':'visible'});

/** Discourage theft */
    $(document).bind("contextmenu",function(e){
        return false;
    });

});

