//DISJOINTED ROLLOVERS USING BUTTON NAVIGATION AND IMAGES FADING IN AND OUT

//$(document).ready(function(){
			//disjointed rollover function starting point
//$("div#button li").hover(function(){
			//make a variable and assign the hovered id to it
//	var elid = $(this).attr('id');
			//hide the image currently there
//	$("div#hello div").hide();
			//fade in the image with the same id as the selected buttom
//	$("div#hello div#" + elid + "").fadeIn("fast");
//	$("div#hello div#" + elid + "").slideDown("fast");
//	});
//});

$(document).ready(function(){
//   $("div#button div").hide();
  $("div#stickers li").hover(function(){
     var elid = $(this).attr('class')
     $("div#hello div").hide();
     $("div#hello div." + elid + "").fadeIn("fast");
   });

});
