Wrap text
|
|
$(document).ready(function() {
$("#M1").click(function(){
$("#M1_Panel").slideToggle("slow");
});
$("#M2").click(function(){
$("#M2_Panel").slideToggle("slow");
});
$("#M3").click(function(){
$("#M3_Panel").slideToggle("slow");
});
$("#M4").click(function(){
$("#M4_Panel").slideToggle("slow");
});
$("#M5").click(function(){
$("#M5_Panel").slideToggle("slow");
});
$("#M6").click(function(){
$("#M6_Panel").slideToggle("slow");
});
$("#M8").click(function(){
$("#M8_Panel").slideToggle("slow");
});
$.jGrowl("Digi you are l33t!...", {
theme: 'manilla',
header: "L33T",
});
$.jGrowl("I Know I'm the Sheit!!...", {
theme: 'manilla',
header: "L33T",
});
});
|