$(window).bind("load",function(){

//home page show/hide
$(".homeSH").click(function() {
  $(this).next("div").toggle('slow');

}, function() {
  $(this).next("div").hide('slow');
});

});

