$(document).ready(function(){
$(".trans img").css({opacity:0.5});
$('.trans').live('mouseover', function(){
$(this).find('img').css({opacity:1.0});
}
);
$('.trans').live('mouseout', function(){
$(this).find('img').css({opacity:0.5});
}
);
$(".products").toggle(
function () {
$('#menutopDesc').html($('#productsDesc').html());
$("#menutopShadow").animate({
height: "220px"
}, 1000);
$("#menutopDesc").fadeIn("slow");
},
function () {
$("#menutopShadow").animate({
height: "15px"
}, 1000);
$("#menutopDesc").fadeOut("slow");
}
);


$(".solutions").toggle(

function () {
$('#menutopDesc').html($('#solutionsDesc').html());
$("#menutopShadow").animate({
height: "260px"
}, 1000);
$("#menutopDesc").fadeIn("slow");
},
function () {
$("#menutopShadow").animate({
height: "15px"
}, 1000);
$("#menutopDesc").fadeOut("slow");
}
);


$(".contact").toggle(
function () {
$('#menutopDesc').html($('#contactDesc').html());
$("#menutopShadow").animate({
height: "250px"
}, 1000);
$("#menutopDesc").fadeIn("slow");

},
function () {
$("#menutopShadow").animate({
height: "15px"
}, 1000);
$("#menutopDesc").fadeOut("slow");
}
);

/* PROBLEMS */
$(".t20").toggle(
function () {
$('#flashtopDesc').html($('#t20Desc').html());
$("#flashtopShadow").animate({
height: "200px"
}, 1000);
$("#flashtopDesc").fadeIn("slow");
},
function () {
$("#flashtopShadow").animate({
height: "16px"
}, 1000);
$("#flashtopDesc").fadeOut("slow");
}
);

$(".t30").toggle(
function () {
$('#flashtopDesc').html($('#t30Desc').html());
$("#flashtopShadow").animate({
height: "200px"
}, 1000);
$("#flashtopDesc").fadeIn("slow");
},
function () {
$("#flashtopShadow").animate({
height: "16px"
}, 1000);
$("#flashtopDesc").fadeOut("slow");
}
);

$(".t40").toggle(
function () {
$('#flashtopDesc').html($('#t40Desc').html());
$("#flashtopShadow").animate({
height: "200px"
}, 1000);
$("#flashtopDesc").fadeIn("slow");
},
function () {
$("#flashtopShadow").animate({
height: "16px"
}, 1000);
$("#flashtopDesc").fadeOut("slow");
}
);


$(".t50").toggle(
function () {
$('#flashtopDesc').html($('#t50Desc').html());
$("#flashtopShadow").animate({
height: "200px"
}, 1000);
$("#flashtopDesc").fadeIn("slow");
},
function () {
$("#flashtopShadow").animate({
height: "16px"
}, 1000);
$("#flashtopDesc").fadeOut("slow");
}
);

$(".t60").toggle(
function () {
$('#flashtopDesc').html($('#t60Desc').html());
$("#flashtopShadow").animate({
height: "200px"
}, 1000);
$("#flashtopDesc").fadeIn("slow");
},
function () {
$("#flashtopShadow").animate({
height: "16px"
}, 1000);
$("#flashtopDesc").fadeOut("slow");
}
);
/* ACCORDION */
		jQuery('#list3').accordion({
			header: 'div.parent',
			active: false,
			alwaysOpen: false,
			autoheight: false
		});
/* FLASH */
 $('#flashtop').flash(   {
   swf: 'flash/med-spa-header.swf',
   height:211,
   width:891
   }
   );
});
