var site = {
	init: function(){
		
		$('input[placeholder!=""]').each(function(){
			$(this).val($(this).attr('placeholder'));
		});
				
		$('input[placeholder!=""]').focus(function(){ 
			if($(this).val() == $(this).attr('placeholder')){
				$(this).val('');
			}
		});

		$('input[placeholder!=""]').blur(function(){
			if($(this).val() == ''){
				$(this).val($(this).attr('placeholder'));
			}
		});
		
		site.gift.toggle(false);
		$('#gift-checkbox').change(function(){
			site.gift.toggle($(this).attr('checked'));
		});
		
		$('.amount,.program').click(function(){
			var input = $(this).find('input');
			if(input.attr('checked') && input.attr('type') == 'checkbox'){
				input.removeAttr('checked');
			}else{
				input.attr('checked','checked');
			}
		});
	},
	
	gift: {
		toggle: function(on){
			if(on){
				$('#gift-fields').show();
			}else{
				$('#gift-fields').hide();
			}
		}
	}
	
	
}
$(function(){ site.init(); });
