// Preload
jQuery.preloadImages = function(){
for(var i = 0; i<arguments.length; i++){
jQuery("<img>").attr("src", arguments[i]);
 }};
$.preloadImages("/i/dancerButton.png");

$(document).ready(function(){

// Fade
$("#topC .be").bind("mouseenter", function() {
    $(this).stop().fadeTo(500, 0);
});
$("#topC .be").bind("mouseleave", function() {
    $(this).stop().fadeTo(400, 1);
});
$("#topA ul li").bind("mouseenter", function() {
    $(this).stop().fadeTo(600, 0.5);
});
$("#topA ul li").bind("mouseleave", function() {
    $(this).stop().fadeTo(300, 1);
});

// Custom Select
$("#menu").selectbox();

 	 });



 	 
 	 
