$(document).ready(function(){
	//fancy inputs
	$(".fancycheck").click(function(){
		($(this).hasClass('fancychecked')) ? $(this).removeClass('fancychecked') : $(this).addClass('fancychecked');
		$(this.hash).trigger("click");
		return false;
	});
});

