/*
 -------------------------------
 jquery_init.js
 
 Author: Lithyem Industries
 Date: 3.10.08

 http://www.lithyem.net
 -------------------------------
*/
$(document).ready(function(){
	$('div.faces img').mouseover(function(){
		$('div.faces img').removeClass('current');
		$(this).addClass('current');
		$('div.faces_content div').hide();
		
		var id = $(this).attr('rel');
		$('#content_'+id).fadeIn('normal');
	});
	
	$('div.faces img:first').addClass('current');
	$('div.faces_content div').hide();
	$('div.faces_content div:first').show();	
});

function namedAnchor(URLtoOpen, windowName) {
	var nw = window.open(URLtoOpen, windowName);
}


