/*

////////////////////
Change Log History:
/////////////////////

 

Change Ref - #1
-----------------
Changed By - HUGE (Josef) 
Changed On - 11/16/2007
Changes:
	- This file is new - please just make sure it is correctly referenced by the homepage

*/

$(document).ready(function() {
	
	$('#feature_module .feat_mod_nav').hover(function() {
		
		id = this.id.substr(this.id.length - 1)
		$('#feature_module .feat_mod_nav').not(this).css('border', 'none')
		$(this).css('border-bottom', '1px solid #CD9E50')
		
		$('#feature_module .feat_mod_slot').hide()
		$('#feature_module #feat_mod_slot' + id).show()
				
	}, function() {})
})
