$(document).ready(function(){
		// Your code here...
 $("#newtree td,#newtree div").hover(
      function () {
//	  	alert('alert');
        $(this).addClass("hover");
      }, 
      function () {
        $(this).removeClass("hover");
      }
    );
	
	$(".prdbrief_thumbnail td").mouseover(function(){
		$(this).children(".prdbrief_options_my").show();

    }).mouseout(function(){
		$(this).children(".prdbrief_options_my").hide();
    });
	if($("body").width()<1100){
		$(".classmy1").addClass("hideme1");
		$(".classmy2").addClass("hideme2");
		$("#newtree a").addClass("hideme3");
		}
		
	var widthmy= $("#divmy1").width();
//	alert(widthmy);
	if($("body").width()<1599){
		$("#divmy1").html("<img src='/images/home.jpg' alt='' />");
		}else if($("body").width()>=1599){
		$("#divmy1").html("<img src='/images/home2.jpg' alt='' />");
		}
		

	if($("#divmy1 img").width()>widthmy)$("#divmy1 img").width(widthmy);



});
