﻿ $(document).ready(function(){$("li.homepage").hover(function(){ $(this).addClass('hover'); } ,function(){ $(this).removeClass('hover'); })});$(document).ready(function(){  //hide the all of the element with class msg_body  $("div.msg_body").hide();  //toggle the componenet with class msg_body  $("h3.msg_head").click(function()  {    $('div.msg_body').slideUp("slow");     $(this).next("div.msg_body").slideToggle(300);  });});            $(function(){                $('#loopedSlider').loopedSlider({                    container: 'img_container',                    slideClass: 'photo',                    autoHeight: false,                    fadeSpeed: 250,                    slideSpeed: 150                });            });