var happy_val = 0;
var src_path = "http:\/\/verywed.com\/images\/vote\/";
function switch_ha() {
if (happy_val == 0) {
$("#love_story_1").hide();$("#love_story_2").show();
$("#happy_switch").attr("src", src_path + "vw4closeshot_buttom003.gif");
happy_val = 1;
} else {
$("#love_story_1").show();$("#love_story_2").hide();
$("#happy_switch").attr("src", src_path + "vw4closeshot_buttom002.gif");
happy_val = 0;
}
}

