// JavaScript Document
$(document).ready(function(){
						   
	$("table.pricing tr").mouseover(function(){$(this).addClass("over");}).mouseout(function(){$(this).removeClass("over");});
	$("table.pricing tr:even").addClass("even");
	$("table.pricing tr:odd").addClass("odd");
	$("table.pricing td:nth-child(2)").addClass("price");
	
	$(".tooltip").simpletooltip();
	/*
	$(".selected-patterns").hide();
	$(".pattern").click(function() { 
		$(".selected-patterns").show();
		var patterntitle = $(this).find("img").attr("alt"); 
		if ($('.selected-patterns:contains(' + patterntitle + ')').length > 0) {
			$(".selected-patterns").html($(".selected-patterns").html().replace("<li>" + patterntitle + "</li>", ""));
		}else{
			$(".selected-patterns").append("<li>" + patterntitle + "</li>");
			return false; 
		}
	});
	*/
 });
