$(document).ready(function () {  
  $("a.apply")
  .click(function() {
  	$("img").removeClass("imageSelected");
  	$("img").addClass("imageNotSelected");
  	$('img#image_'+$(this).attr("id")).removeClass("imageNotSelected");
  	$('img#image_'+$(this).attr("id")).addClass("imageSelected"); 
  	$('img#currentImage').attr("src",$('img#image_'+$(this).attr("id")).attr("src")); 
  	$('input#newTemplate').val($(this).attr("id"));
  	
 	return false;
  });
  
  
  $("div#sendFormButton")
  .click(function() {
  	click_me('changeTemplate');
  });
  $("div#noApplyButton")
  .click(function() {
  	window.location.reload(true);
  });

})
