// JavaScript Document

	var j = jQuery.noConflict();

	j(document).ready(function(){
		j('.thumbs a img')
			.hover( function() {
				j(this).stop().animate({ 
				opacity: 0.6
			  }, 300 );
		}, function() {
				j(this).stop().animate({ 
				opacity: 1.0
			  }, 300 );
		});
	});

j(document).ready(function(){  
    j('.dd').bind( 'mouseover', ddMouseOver );  
    j('.cancel > *').bind( 'click', ddMouseClick );  

j('li a IMG')
	.hover( function() {
		j(this).stop().animate({ 
		opacity: 1.0
	  }, 300 );
}, function() {
		j(this).stop().animate({ 
		opacity: 0.6
	  }, 300 );
});

});  


function ddMouseOver(e)  
{     
	j('.SectionSH').stop()
		.animate({backgroundPosition:'(0px 0px)'},200)
	j(this).stop()
		.animate({top: '-7px'}, 300 );

}  

function ddMouseClick(e)  
{
	j('.SectionSH').stop()
		.animate({backgroundPosition:'(0px -30px)'},200)
	j('.dd').stop()
		.animate({top: '-95px'}, 300 );
		
}  
