
function profile_shops()
{$("#moreshops").click(function()
{$(this).slideUp();$(".othershops").slideDown();return false;});}
function profile_feedme(){$(".nicetofeed").click(function(){$(this).parent().next("form").slideToggle();return false;});}
function profile_read_more(){$('#description .read_more').click(function(){$('#description .extended').show();$(this).hide();return false;});}
function profile_url(){$("#profileurl").click(function(){$(this).select();});}
function profile_occupations(){$("#more_jobs").click(function(){$(".job").toggleClass("hidden");if($(this).text()=="[+]")$(this).text("[-]");else $(this).text("[+]");return false;});}
$(document).ready(function(){profile_shops();profile_feedme();profile_read_more();profile_url();profile_occupations();});