$(document).ready(function(){ 
        $(document).pngFix(); 
    }); 
/*$(document).ready(function(){

	$("#menu  a").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "-75"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "-85"}, "fast");
	});
	
	 
});*/
/*$(document).ready(function(){
	
	$(".accordion2 h3:first").addClass("active");
	$(".accordion2 h3:not(@active)").next("div").hide();

	$(".accordion2 h3").click(function(){
		$(this).next("div").slideToggle("slow")
		.siblings("div:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
	});

});*/
/*

$(document).ready(function(){
	
	$(".accordion2 h3").eq(1).addClass("active");
	$(".accordion2 div").eq(1).show();

	$(".accordion2 h3").click(function(){
		$(this).next("div").slideToggle("slow")
		.siblings("div:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
	});

});*/



$(document).ready(function(){
	
	$(".accordion2 h3.actual").addClass("active");
	$(".accordion2 div.actual ").show();

	$(".accordion2 h3").click(function(){
		$(this).next("div").slideToggle("slow")
		.siblings("div:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
	});

});

$(document).ready(function(){
	
 $('a[@rel*=lightbox]').lightBox();

});

$(document).ready( function() {
    
    $('A[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
    
});