$(function() {
    if ($.browser.safari || $.browser.msie) {
       $('.work').mouseover(function(){
            if ($(this).next()) {
                $(this).next().addClass('hover-next');
            }
       }).mouseout(function(){
            if ($(this).next()) {
                $(this).next().removeClass('hover-next');
            }
       });
    }

    if ($.browser.msie && 6 == $.browser.version) {
        $('.work').mouseover(function(){
            $(this).addClass('hover');
        }).mouseout(function(){
            $(this).removeClass('hover');
        });
		
		if ($('#work_page')) {
			$('#work_page .body').css({
				zoom: 1
			});
			
			$('#work_page .category').css({
				position: 'relative',
				left: '3px'
			});
		}
		
		if ($('#contacts_page')) {
			$('#contacts_page .body').css({
				'position': 'relative',
				'left': '-4px'
			});
		}
		
		
    }

    if ($.browser.mozilla) {
        $('#contacts_page .sidebar2 input.button').css('text-indent', '-3px');
    }
});
