
$(document).ready(function(){	

    //preload the other image
    //$('<img />')
    //.attr('src', 'images/aside/gina-natural.jpg')
    //.load(function(){
        //$('aside').append( $(this) );
        // Your other custom code
    //});

		// assign a click event to the exposed element, using normal jQuery coding
	//$('#wrapper').click(function() {
	//$('#headshotlg').attr('src', 'images/aside/gina-natural.jpg');
   //});
   

 	    $('.topmenu').click(function () {
 	       
		   $(this).next('div.submenu').slideToggle();
 	    });
		
		
   $(function(){

   $(".homebox").hover(function () {
       $(".homeboxr",this).fadeIn() ;
	   },function(){
	$(".homeboxr",this).fadeOut() ;
    });
   });

  

});
