if(typeof jQuery != 'undefined') {
	$(document).ready(function() {
		
		//tables
		$("table tr:first").addClass("head");
   		$("table tr:even:not(.head)").addClass("odd");
		
		// gradient
		$('#mgradient').gradient({
			from:      '000000',
			to:        '666666',
			direction: 'horizontal'
		});

	});
}