// code to execute on all pages
$(document).ready(function() {
	// button rollover for all browsers   
	$('.button').hover(function() {
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});
	
	// checkbox selection 
	// Select all
    $("a[href='#select_all']").click( function() {
        $("#" + $(this).attr('rel') + " input[type='checkbox']").attr('checked', true);
        return false;
    });
	
	// Select none
    $("a[href='#select_none']").click( function() {
        $("#" + $(this).attr('rel') + " input[type='checkbox']").attr('checked', false);
        return false;
    });
    
    // open print dialog
	$('a#printProduct').click(function() {
		window.print();
		return false;
	});
	
	
});
