function toggleTextOut(e, txtval){
    if (e.value == "") 
        e.value = txtval;
    
}

function toggleTextIn(e, txtval){
    if (e.value == txtval) 
        e.value = "";
    else 
        e.select();
}

function yourfunction(){
    return;
}

$(document).ready(function(){
    $("#large-image img").each(function(){
        jQuery("<img>").attr("src", this.src);
    })   
});


function showLarge(th){
	$("#large-image img").hide().attr({"src": th.href, "title": th.title});

	$("#large-image>img").load(function(){$("#large-image>img:hidden").fadeIn("slow")});
	return false;
}
function showLarge1(th){
		$("#large-image>a>img").attr({"src": th.href, "title": th.title});
		return false;
	}




