jQuery(function(){
	if (jQuery('INPUT#card_code').length > 0) {
		jQuery('INPUT#card_code').parent().prepend('<div class=cardlogo>&nbsp;</div>');
	};
	swapp();	
});
function swapp(){
	var repl = jQuery('#exp_year');
	var d = new Date();
	var curr_year = d.getFullYear();
	var str = '<select id="' + repl.attr('id') + '" name="'+ repl.attr('name') +'">';
	for (var i=0; i<=9; i=i+1){
		str = str + '<option>' + (curr_year + i) + '</option>'
	}
	str = str + '</select>';
	repl.parent().append(str);
	repl.remove();
	var repl = jQuery('#exp_month');
	var str = '<select id="' + repl.attr('id') + '" name="'+ repl.attr('name') +'">';
	for (var i=1; i<=12; i=i+1){
		if (i <= 9 ){
			str = str + '<option>0' + i + '</option>';
		} else {
			str = str + '<option>' + i + '</option>'
		}
	}
	str = str + '</select>';
	repl.parent().append(str);
	repl.remove();
}
