function replaceFormElements(){
/* replace radio buttons */
if($("input:radio").wrap('<span class="radiostyle" />')){
$(".radiostyle").css({"position":"relative","display":"block","float":"left","height":"14px","width":"14px","background":"url(http://www.regaloweekend.it/wp-content/themes/regaloweekend/images/radiobuttons.png) no-repeat left top","margin-right":"5px"});
$("input:radio").css({"filter":"alpha(opacity=0)","-moz-opacity":"0","-khtml-opacity":"0","opacity":"0"});
}
$("input:radio").change(function(){
if($("input:radio:checked")){
$("input:radio").parent().css({"position":"relative","display":"block","float":"left","height":"14px","width":"14px","background":"url(http://www.regaloweekend.it/wp-content/themes/regaloweekend/images/radiobuttons.png) no-repeat left top","margin-right":"5px"});
$("input:radio:checked").parent().css({"position":"relative","display":"block","float":"left","height":"14px","width":"14px","background":"url(http://www.regaloweekend.it/wp-content/themes/regaloweekend/images/radiobuttons.png) no-repeat left bottom","margin-right":"5px"});
}
});
/* replace radio checkboxes */
if($("input:checkbox").wrap('<span class="checkstyle" />')){
$(".checkstyle").css({"position":"relative","display":"block","float":"left","height":"14px","width":"14px","background":"url(http://www.regaloweekend.it/wp-content/themes/regaloweekend/images/checkboxes.png) no-repeat left top","margin-right":"5px"});
$("input:checkbox").css({"filter":"alpha(opacity=0)","-moz-opacity":"0","-khtml-opacity":"0","opacity":"0"});
}
$("input:checkbox").change(function(){
if($(this).attr("checked")){
$(this).parent().css({"position":"relative","display":"block","float":"left","height":"14px","width":"14px","background":"url(http://www.regaloweekend.it/wp-content/themes/regaloweekend/images/checkboxes.png) no-repeat left bottom","margin-right":"5px"});
}else{
$(this).parent().css({"position":"relative","display":"block","float":"left","height":"14px","width":"14px","background":"url(http://www.regaloweekend.it/wp-content/themes/regaloweekend/images/checkboxes.png) no-repeat left top","margin-right":"5px"});
}
});
/*replace select menu*/
if($("select").wrap('<span class="selectstyle" />')){
$(".selectstyle").css({"position":"relative","display":"block","float":"left","height":"27px","width":"196px","background":"url(http://www.regaloweekend.it/wp-content/themes/regaloweekend/images/select.png) no-repeat left top"});
$("select").css({"filter":"alpha(opacity=0)","-moz-opacity":"0","-khtml-opacity":"0","opacity":"0","height":"27px","width":"196px","position":"absolute","top":"0px","left":"0px","z-index":"81"});
$("select").each(function(){
var selectid = $(this).attr("id");
if($(this).after('<span class="sel_'+selectid+'" />')){
$(".sel_"+selectid).css({"height":"27px","width":"186px","position":"absolute","top":"0px","left":"0px","z-index":"80","line-height":"27px","padding-left":"10px"});
var startvalue = $(this[0]).text();
$(".sel_"+selectid).html(startvalue);
}
$(this).change(function(){
var writevalue = $("#"+selectid+" option:selected").text();
$(".sel_"+selectid).html(writevalue);
});
});
}


}

/*
var selectid = $("select").attr("id");
if($("select").after('<span class="sel_'+selectid+'" />')){
$(".sel_"+selectid).html("ciao");
}
*/
