jQuery.jQueryRandom = 0;
jQuery.extend(jQuery.expr[":"], {
    random: function(a, i, m, r) {
        if (i == 0) {
            jQuery.jQueryRandom = Math.floor(Math.random() * r.length);
        };
        return i == jQuery.jQueryRandom;
    }
});

$(document).ready(function(){

	$('.box').accordion({
			header: 'div.trigger, a.action',
			active: false,
		    alwaysOpen: false,
			autoheight:false,
			animated: 'easeslide'
	});
/*		
   	$(".info").hide();
	
		$("#box_1").click(function () {
		alert($(this).id);
			$("#info_1").toggle("fast");
			return true;
		});
*/

/*
	$("#twitter").getTwitter({
					userName: "live_curious",
					numTweets: 5,
					loaderText: "Loading tweets...",
					slideIn: false,
					slideDuration: 150,
					showHeading: false,
					//headingText: "Latest Tweets",
					showProfileLink: false,
					showTimestamp: false
	});
*/
	
})


