// JavaScript Document
$(document).ready(function() {
				   
$('#topMenu ul li').hover(
	function () {
		//show its submenu
		
		
		$(this, "a img").stop().animate({
				"opacity": "1",
				"paddingTop": '25px'
			},300);
		$(".active").stop();
	}, 
	function () {
		//hide its submenu
		$(this, "a img").stop().animate({
				"opacity": "0.5",
				"paddingTop":'0'
			}, 250);		
	}
);
//$('.imagesHome img').css({ opacity: 0.5 });					   
$('.imagesHome, .userIMG_single, .colorBORDER').hover(
	function () {
		//show its submenu
		
		
		$(this, "img").animate({
				"opacity": "0.5",
			},300);
	}, 
	function () {
		//hide its submenu
		$(this, "img").animate({
				"opacity": "1",
			}, 300);		
	}

);

/*if($("#contentLIST li").height()>$(".rNone").height()) {
$(".rNone").height($("#contentLIST li").height());
}else{
$("#contentLIST li").height($(".rNone").height());
}
*/

});


