$(document).ready(function(){
													 
  // year in flower
  $('#modaltable_yearinflower a').click(function(e) {
		e.preventDefault();
		rel = $(this).attr('rel');
		if(rel) {
			rel = rel.toLowerCase();
			$("#loaderDiv").load("year_in_flower_boxes.htm ." + rel)
			$("#loaderDiv").modal();
		}
		return false;
  });


  // year in scent
  $('#modaltable_yearinscent a').click(function(e) {
		e.preventDefault();
		rel = $(this).attr('rel');
		if(rel) {
			rel = rel.toLowerCase();
			$("#loaderDiv").load("year_in_scent_boxes.htm ." + rel)
			$("#loaderDiv").modal();
		}
		return false;
  });

});