// JavaScript Document
$(function(){
	
	
	
	
	$('a').focus(function(){$(this).blur();});



	
	
	$('#black_1 h4:eq(0)').bind('mouseover',function(){
		$('#black_1 .content div').removeClass('select');
		$('#black_1 .content div:eq(0)').addClass('select');
		$('#black_1').css({background: 'url(Images/block1_bg.jpg) 0px 0px no-repeat'});
	})
	$('#black_1 h4:eq(1)').bind('mouseover',function(){
		$('#black_1 .content div').removeClass('select');
		$('#black_1 .content div:eq(1)').addClass('select');
		$('#black_1').css({background: 'url(Images/block1_bg.jpg) 0px -259px no-repeat'});
	})
	
	
});