// Homepage Function - jQuery

var homeshow = {
	init : function() {
		$('#side_nav > li > a').hover(homeshow._show,function(){ return false; });
	},
	_show : function() {
		var Rel = $(this).attr('rel');
		
		$('div.frames').each(
			function() {
				if( $(this).attr('id') == Rel )
					$(this).css({ display:'block', position:'relative', visibility:'visible'});
				else
					$(this).css({ display:'none', position:'absolute', visibility:'hidden'});
			}
		)
		
	}
}
$(document).ready(homeshow.init);