// JavaScript Document
$(document).ready(function(){

        $("a[rel='example1']").colorbox({transition:"fade"});
        $(".colorbox").colorbox({iframe:true, width:700, height:650});

        $('#main_menu > li').hover(
                function(){
                        $(this).find('ul').show(0);
                        //$(this).find('a:eq(0)').addClass('activated');
                },
                function(){
                        $(this).find('ul').hide(0);
                        //$(this).find('a:eq(0)').removeClass('activated');
                }
        );
		
	jQuery('.info').tooltip({
		track: true,
		delay: 0,
		showURL: false,
		showBody: " - ",
		extraClass: "left",
		fade: 250,
		positionLeft: true,
		left: -20
	});		
       
});	




