/**
 * @author f.lam
 * 
 * @uses : Manipulation of products js pages
 */

$(document).ready(function () {

	$("#buttonCheck").click(function(e){
		$('input').each(function(){
			if ( $(this).attr('class') == 'inputPackProducts' ) $(this).attr('checked','checked');
		})
		$('#cellUncheckAll').css('display','block');
		$('#cellCheckAll').css('display','none');
	});
	
	$("#buttonUncheck").click(function(e){
		$('input').each(function(){
			if ( $(this).attr('class') == 'inputPackProducts' ) $(this).attr('checked','');
		})
		$('#cellUncheckAll').css('display','none');
		$('#cellCheckAll').css('display','block');
	});
	
	
});


