$(document).ready(function(){

	 // FIRE UP HOME IMAGE ROTATOR
	 $('#home-rotator').cycle({
	 	speed: 3000,
		timeout: 5000,
		slideExpr: 'img'
	 });
	 
	 // FIRE UP CHANGING COLORS PAGE ROTATOR
	 $('#colors-rotator').cycle({
	 	speed: 3000,
		timeout: 5000
	 });
	 
	// SET UP DEFAULT TEXT FOR A FEW FORM INPUT FIELDS 
	$('#s').DefaultValue('enter keywords');
	$('#region').DefaultValue('enter region if other than US or Canada');
	$('#country').DefaultValue('enter country if outside US');		 
	 
	 // FIRE UP CHANGING COLORS PAGE ROTATOR
	 $('#changing-colors-rotator').cycle({
	 	speed: 3000,
		timeout: 3000
	 });
	 
	 $('#changing-colors-clickable-rotator').cycle({
	 	speed: 3000,
		timeout: 3000
	 });		 	 
	 
	// SET LINKS WITH REL=LIGHTBOX TO RUN AS LIGHTBOX
	$('a[@rel*=lightbox]').lightbox({
          fileLoadingImage: '/wp-content/themes/bray_original/images/lightbox/loading.gif',
          fileBottomNavCloseImage: '/wp-content/themes/bray_original/images/lightbox/closelabel.gif',
			resizeSpeed: 375
	});
	
     // SET UP 'COMPLETE LIST' PAGE POPUPS
	 $(".complete-list-item").cluetip({
          closePosition : "title",
			width: 216,
          sticky: true,
			arrows: true,
			ajaxSettings: {   
				dataType: 'html'
    		}
     });
	 
     // IF USER IS PLACING INTERNATIONAL MONEY ORDER, CHANGE SHIPPING FIELD TO 20.00
	 $("#paymentmethod").change(function(){
          if ($(this).val() == 'internationalMoneyOrder')
          {
          	var intlShipping = 20;
				
				intlShipping = intlShipping.toFixed(2);
				$("#shippingtotal").val(intlShipping);
				
				var origPrintsTotal = parseFloat($("#printstotal").val());
				origPrintsTotal = origPrintsTotal.toFixed(2);
				
				var newGrandTotal = parseFloat(intlShipping) + parseFloat(origPrintsTotal);
				newGrandTotal = newGrandTotal.toFixed(2);
				
				$("#grandtotal").val(newGrandTotal);
          }
     });	 

});