// JavaScript Document

var clickedOptionMstore  = false;
var names = {};
var count = 0;

function checkOptionsMstore() {
	count = 0;
	$('input:radio').each(function() { // find unique names
		  names[$(this).attr('name')] = true;
	});
	
	$.each(names, function() { // then count them
		  count++;
	});
	var intRadios	= $('input:radio:checked').length;
    if ($('input:radio:checked').length == count) {
      // all questions answered
	  return true;;
	}
	else {
		$("#attributeMessage").html("You must choose from each of the options for this product");
		$("#attributeMessage").slideDown('slow');
		// alert('You must choose from each of the options for this product');
		return false;
	}

}

//********************************************************

function getSlideshow() {
	$.fn.colorbox({href:'/flash/bionic.html', iframe:true, innerWidth:700, innerHeight:440 }); 
}



