jQuery.noConflict();
jQuery(document).ready(function($) {

	$('input.giftServicesRadioButton').change(
		function(){
			var thisLength = $(this).attr('name').length;
			var thisID = $(this).attr('name').charAt(thisLength-1);		
			if ($(this).val()==1){
				$('td#' + thisID + ' input:checkbox').attr('checked', 'checked');
			} else {
				$('td#' + thisID + ' input:checkbox').attr('checked', '');
			}
		}
	);	
	
	$('input[name=Continue]').click(function(){
		var radioButtonsChecked = true;
		//select all the 'groups'
		$('table.giftOptions').each(function(){
			//make sure at least one is selected
			if(!$('input:radio:checked', this).length > 0){
				//write a message
				if(radioButtonsChecked){
					alert('Please select an option for "Step 2b - Gift Box & Card" for each shipment.');
				}
				radioButtonsChecked = false;
				return radioButtonsChecked;
			}				
		});		
		return radioButtonsChecked;
	});	
	
	if($('div.giftnavtopsub').length > 0){
	
		var path = location.pathname.substring(1) + '?itemID=5&itemType=LANDING';
		
		if ( path ){
			$('div.giftnavtopsub a[href$="' + path + '"]').attr('class', 'giftnavtopselected1').css('color', '#fff');
		}	
	}
});

jQuery.fn.showCartFlyOut = function() {	
	var leftPosition = $(this).position();	
	$(this).css({'left':leftPosition.left , 'top':133, 'visibility':'visible'});	
}
