$(function(){

	if(document.getElementById('image_title')){
		$('#image_title').hover(
			function(){
				$('#image_title a').addClass('hover');
			},
			function(){
				$('#image_title a').removeClass('hover');
			}
		)
	}
	
	if(document.getElementById('nuclear-cycle')){
		$('span.pseudo-href').hover(
			function(){
				$(this).addClass('hover');
			},
			function(){
				$(this).removeClass('hover');
			}
		);
	}

	

	if(document.getElementById('service_icons')){
		$('#service_icons a').hover(
			function(){
				$(this).addClass('hover');
			},
			function(){
				$(this).removeClass('hover');
			}
		)
	}

	var inc = $('#content .incut_foto');
	
	if(inc.length > 0){
		inc.hover(
			function(){
				$(this).addClass('hover');
			},
			function(){
				$(this).removeClass('hover');
			}
		)
	}

});

/*Common.Event.add(window, 'load', mode);

function makePseudoLinks() {
var aPseudoLinks = Common.Dom.getElementsByClassName(document, 'pseudo_link', '*');
if (aPseudoLinks.length > 0) {
for(var i = 0, iLength = aPseudoLinks.length, oPseudoLink; i < iLength; i++) {
oPseudoLink = aPseudoLinks[i];
oPseudoLink.onmouseover = function() { Common.Class.add(this, 'pseudo_link_hover'); }
oPseudoLink.onmouseout = function() { Common.Class.remove(this, 'pseudo_link_hover'); }
}
}
}*/
