$('document').ready(function() {
	
	$('.broken').click(function() {
		alert("I told you already, it's broken!");
		return false;
	});	
	
	
	
});


//var colors = new Array();
var colors = [];
colors["yellow"] = 'purple';
colors["green"] = 'red';
colors["blue"] = 'orange';

//alert(colors["yellow"]);

/*function warning()
{
	alert("This is your final warning");
}*/


