/**
 * SIMPLE JQUERY 
 * BY : PHILIPS TEL
 **/
 
/* fade menu for PRODUCTS */
$(document).ready(function(){
$(".flip").click(function(){
	$(".panel").slideToggle("slow");
  });
});

/* fade menu for GREEN PEEL */
$(document).ready(function(){
$(".flip_1").click(function(){
	$(".panel_1").slideToggle("slow");
  });
});

/* fade menu for GREEN PEEL */
$(document).ready(function(){
    $(".tabs").click(function(){
         $(".panel_1").slideToggle("slow");
    });
});


function show_tip( id )
{
    document.getElementById('show-tip-content'+id).style.visibility = 'visible';
    document.getElementById('show-effective-content'+id).style.position = 'absolute';
    document.getElementById('show-effective-content'+id).style.visibility = 'hidden';
    document.getElementById('show-tip-content'+id).style.position = 'relative';

}

function show_effective( id )
{
    document.getElementById('show-effective-content'+id).style.position = 'relative';
    document.getElementById('show-tip-content'+id).style.visibility = 'hidden';
    document.getElementById('show-tip-content'+id).style.position = 'absolute';
    document.getElementById('show-effective-content'+id).style.visibility = 'visible';   
}
