$(document).ready(function() {
	$('button[@href]').click(function(){
		var url = $(this).attr('href');
		window.location = url;
	});
	$('button[@form]').click(function() {
		var formId = $(this).attr('form');
		
		$(formId).submit();
		return false;
	});	

	$('tr.pointer')
		.mouseover(function() {
			$(this).addClass('on-mouse');
		})
		.mouseout(function() {
			$(this).removeClass('on-mouse');
		})
		.click(function(){
			var url = $('a',this).attr('href');
			if (url != undefined) {
				//window.location = url;	
			}
		});		
	$('th input[type=checkbox]').click(function(){
		if ($(this).is(':checked')) {
			$('.data tbody').find('input[type=checkbox]').attr('checked','checked');
		} else {
			$('.data tbody').find('input[type=checkbox]').remove('checked');
		}
		
	});
});


