// jquery
$(document).ready(function(){
	
	// sort table
	$(".tablesorter").tablesorter({widgets: ['zebra']});
	
	//box modal
	$(".modalBox").colorbox({width:"80%", height:"80%", iframe:true});
	
	//tweet
	$("#tweet").relatedTweets( {
		from_users: "malwaregroup",
		status:1,
		realtime:0,
		show_avatar:0,
		show_author:0,
		n: 1
        } );

	// Menu system
	function addMega() {
		$(this).addClass("hovering");
	}
	function removeMega() {
		$(this).removeClass("hovering");
	}	
	var megaConfig = {
		interval: 500,
		sensitivity: 4,
		over: addMega,
		timeout: 500,
		out: removeMega
	};
	$("li.mega").hoverIntent(megaConfig)



});

//Google Analytics
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
try {
	var pageTracker = _gat._getTracker("UA-15377187-1");
	pageTracker._trackPageview();
} catch(err) {}