// JavaScript Document
jQuery.noConflict();
jQuery(document).ready(function(){

/*DROPDOWN MENU*/
    jQuery('.dropdown li.toplevel ul').css({
        opacity: 0
    });
    jQuery('.dropdown li.toplevel').hover(function(){
        jQuery('ul', this).css('display', 'block').animate({
            opacity: 1
        }, 400);
    }, function(){
        jQuery('ul', this).css('display', 'none').animate({
            opacity: 0
        }, 400);
    });
    /*
     jQuery('#nav3 ul').hover(function(){
     jQuery('#nav3 a', this).animate({
     backgroundPosition: "(bottom left)"
     }, {
     duration: 500
     })
     });
     */
	
/*COLORBOX
     jQuery(".linkbox").colorbox({
     //width: 650,
     //height: 400
     });
     */
});
