    /* anvil site scripts */
    $(function () {

		var twit = $("#twitter");
		if (twit.tweet) {
			twit.tweet({
				username: "anvilstudios",
				count: 5,
				loading_text: "<ul><li>loading <a href=\"https://twitter.com/#!/anvilstudios\">twitter feed</a> ...</li></ul>" ,
			});
		}

        $('a').click( function() {
            var regexp_mydomain="anvilstudios.co.za";
            var regexp_ishttp=/(http(.)*:\/\/)/;
            if ( (this.href != null) && (this.href.match(regexp_mydomain) == null) && (this.href.match(regexp_ishttp)!=null) ) {
                window.open(this.href);
                return false;
            }
            return true;
        });

        $('a.external').click( function() {
            window.open(this.href);
            return false;
        });
		
    });
