/*
$(document).ready(function(){

	//anchor_animate();
	//menu_nav();
	$('*').ifixpng();
});
*/

function anchor_animate() {
	$('.normal a').mouseover(function(){
       $(this).animate({color:'#3EAAD6'},300);
	}).mouseout(function(){
    	$(this).animate({color:'#FFFFFF'},300);   
   	});
	
	$('.current_subsection a').mouseover(function(){
       $(this).animate({color:'#FFBD00'},300);
	}).mouseout(function(){
    	$(this).animate({color:'#FFFFFF'},300);   
   	});
}

function menu_nav() {
	$('.current_section a').mouseover(function(){
       var section = $(this).attr("id");
       $('.current_subsection').html('<?php echo template::subsection(Router::$controller, Router::$method, $this->uri->segment(4)); ?>');
	}).mouseout(function(){
    	$('.current_subsection').html('');   
   	});
	
}





