$(document).ready(function (){
	$(".colors img").each(function(i){
      $(this).click(function(){
         if($(".colorActive").is("img")){$(".colorActive").removeClass("colorActive");}
         $(this).addClass("colorActive");
         $(this).parents("label").siblings("input").check();
      	return false;
      });
   });
   $(".colors input").each(function(i){
      $(this).click(function(){
         if($(".colorActive").is("img")){$(".colorActive").removeClass("colorActive");}
         $(this).siblings("label").children("img").addClass("colorActive");
         $(this).check();
      	return false;
      });
   });
});
