$(document).ready(function() {
    $("tr", ".market").hover(
      function () {
        $(this).addClass("graybg");
      },
      function () {
        $(this).removeClass("graybg");
      }
    );
    
    $(".tonote", ".main").each(function(){
        var noteid=$(this).attr("id").replace("m", "");
        if($(this).hasClass("noted")){
            $(this).attr("title", "Убрать из блокнота");
        }
        else{
            $(this).attr("title", "Добавить в блокнот");
        }
    });
    
    $(".tonote", ".main").click(function(){
        var noteid=$(this).attr("id").replace("m", "");
        if($(this).hasClass("noted")){
            $(this).attr("title", "Добавить в блокнот");
        }
        else{
            $(this).attr("title", "Убрать из блокнота");
        }
        $(this).toggleClass("noted");
        $("#note").load('/note.php',{'id': noteid});
    });



    $('select#brand').change(function() {
      $("select#car").load('/cars.php',{'brand': $('select#brand').val()});
    });
    
    $("a[rel=img_group]").fancybox({
		hideOnContentClick   	: 'true',
		prevEffect		: 'none',
		nextEffect		: 'fade',
		loop			: false,
		helpers	: {
			title	: {
				type: 'outside'
			},
			overlay	: {
				opacity : 0.8,
				css : {
					'background-color' : '#000'
				}
			},
			thumbs	: {
				width	: 50,
				height	: 50
			}
		}
	});

});

