//Slide Panel
$(function() {
	$('#slides').slides({
		play: 6000,
		pause: 500,
		hoverPause: true,
		randomize: true
	});
});
//End of Slide Panel

//Image Fade
$(function() {
// var randomNum = Math.floor(Math.random()*5);
//$('div#sidead div:eq(' + randomNum + ')').css("display", "block");

$('div#caselogos').cycle({ 
    fx:      'fade',
    speed: 1000,
    timeout: 2000,
	random: 1
});
$('div#sectors').cycle({ 
    fx:      'fade',
    speed: 1000,
    timeout: 2300,
	random: 1
});
$('div#quotes').cycle({ 
    fx:      'scrollUp',
    speed: 1000,
    timeout: 5000,
	random: 1
});

});
//End of Image Fade

//Menu Slide Down
ddsmoothmenu.init({
 mainmenuid: "menu", //menu DIV id
 orientation: 'h', //Horizontal or vertical menu: Set to "h" or "v"s
 //customtheme: ["#919195"],
 contentsource: "markup" //"markup" or ["container_id", "path_to_menu_file"]
})
//End of Menu Slide Down
