$(document).ready(function() {

	$(function(){
			$.superbox.settings = {
				closeTxt: "Close",
				loadTxt: "Loading...",
				nextTxt: "Next",
				prevTxt: "Previous"
			};
			$.superbox();
	});
  $(function() {
       $('a.lightbox').lightBox();
  });

		$("#sSize").change(function() {
 			if($(this).val() > 9){
 			  $('#sPriceDisplay').html($("#dPrice2").val());
 			  $('#tPriceDisplay').html($("#dPrice2").val());
 			  
   		}else{
 			  $('#sPriceDisplay').html($("#dPrice1").val());
 			  $('#tPriceDisplay').html($("#dPrice1").val());
   		}
 			
    });
    $("#tEngraving").change(function() {
 			if($(this).val() != ""){
 			  $('#sPriceEngraving').html('25.00');
 			  if($("#sSize").val() > 9 ){
   			  $('#tPriceDisplay').html((parseFloat($("#dPrice2").val()) + 25).toFixed(2));
   			}else{
   			  $('#tPriceDisplay').html((parseFloat($("#dPrice1").val()) + 25).toFixed(2));
   			}
   		}else{
 			  $('#sPriceEngraving').html('0.00');
 			  if($("#sSize").val() > 9 ){
   			  $('#tPriceDisplay').html($("#dPrice2").val());
   			}else{
   			  $('#tPriceDisplay').html($("#dPrice1").val());
   			}
   		}
 			
    });
    
});