/***********************
**
**	hoverCheck
**
**	Created By Michael Wright (c)
**	http://michaelwright.me
**	@michaelw90
**
***********************/

$(document).ready(function(){
	var x;
	$('.hovercheck').hover(function(){
		if(!$(this).attr("checked")){
			x = 1;
			$(this).attr("checked", "true");
		}else{
			x = 0;
		}
	},function(){
		if(x == 1)
			$(this).removeAttr("checked");
	}).click(function(){
			if(x){
				$(this).attr("checked", "true");
				x = 0;
			}else
				$(this).removeAttr("checked");
	});
});
