$(document).ready(function () {
$('.img a span').css( {opacity:"0",filter:"alpha(opacity=0)"} )
$('.img').css( {borderColor:"#eeeeee"} )
$('h2').css( {width:"339",borderTopColor:"#cccccc"} )
$('.tab').css( {opacity:"1",filter:"alpha(opacity=100)"} )
	$('.left').mouseover(function(){
		$('.left .img a span').stop().animate( {opacity:"1",filter:"alpha(opacity=100)"},{duration:450} )
		$('.left .img').stop().animate( {borderTopColor:"#cccccc",borderLeftColor:"#cccccc",borderRightColor:"#cccccc",borderBottomColor:"#cccccc"},{duration:450} )
		$('.left h2').stop().animate( {width:"210",borderTopColor:"#eeeeee"},{duration:450} )
		$('.left .tab').stop().animate( {opacity:"0.75",filter:"alpha(opacity=75)"},{duration:450} ) })
	$('.left').mouseout(function(){
		$('.left .img a span').stop().animate( {opacity:"0",filter:"alpha(opacity=0)"},{duration:450} )
		$('.left .img').stop().animate( {borderTopColor:"#eeeeee",borderLeftColor:"#eeeeee",borderRightColor:"#eeeeee",borderBottomColor:"#eeeeee"},{duration:450} )
		$('.left h2').stop().animate( {width:"339",borderTopColor:"#cccccc"},{duration:450} )
		$('.left .tab').stop().animate( {opacity:"1",filter:"alpha(opacity=100)"},{duration:450} ) })

	$('.right').mouseover(function(){
		$('.right .img a span').stop().animate( {opacity:"1",filter:"alpha(opacity=100)"},{duration:450} )
		$('.right .img').stop().animate( {borderTopColor:"#cccccc",borderLeftColor:"#cccccc",borderRightColor:"#cccccc",borderBottomColor:"#cccccc"},{duration:450} )
		$('.right h2').stop().animate( {width:"250",borderTopColor:"#eeeeee"},{duration:450} )
		$('.right .tab').stop().animate( {opacity:"0.75",filter:"alpha(opacity=75)"},{duration:450} ) })
	$('.right').mouseout(function(){
		$('.right .img a span').stop().animate( {opacity:"0",filter:"alpha(opacity=0)"},{duration:450} )
		$('.right .img').stop().animate( {borderTopColor:"#eeeeee",borderLeftColor:"#eeeeee",borderRightColor:"#eeeeee",borderBottomColor:"#eeeeee"},{duration:450} )
		$('.right h2').stop().animate( {width:"339",borderTopColor:"#cccccc"},{duration:450} )
		$('.right .tab').stop().animate( {opacity:"1",filter:"alpha(opacity=100)"},{duration:450} ) })
});