var topMenu ='home';
var featured = 1;
function jhtml(p) {
	if (topMenu === 'home') { $("#featured").html($('#desc').html()); };
	topMenu = p;
	$('#'+topMenu).css('background-image','url(images/menu_'+p+'.png)');
	$('.topMenu').mouseover(
							function(){
								$(this).children().css('background-image','url(images/menu_'+$(this).children().attr("id")+'.png)');
								}).mouseout(function(){
									if (topMenu===$(this).children().attr("id"))
									$(this).children().css('background-image','url(images/menu_'+$(this).children().attr("id")+'.png)');
									else
									$(this).children().css('background-image','none');
								});
	$('.btn').mouseover(
							function(){
								$(this).children().css('background-image','url(images/btn_'+$(this).children().attr("id")+'.png)');
								}).mouseout(function(){
									$(this).children().css('background-image','none');
								});
}
function toggle() { 
	if (featured === 0) {
		featured = 1; 
		$("#featured").hide().html($('#desc').html()).slideDown('fast');
		} 
		else { 
		featured = 0; 
		$("#featured").hide().html($('#asc').html()).slideDown('fast');
		}
}
