// form handlers
$('#catalog-request-form').validate();
/*$('a[rel$=button]').click(function (e) {
	e.preventDefault();
	var wrapper = $(this).attr('rel');
	wrapper = wrapper.replace('button', 'wrapper');
	if (ajb.getCookie('wrappers')) {
		var cookieStr = ajb.getCookie('wrappers');
		if (ajb.getCookie('wrappers').indexOf(wrapper) === -1) {
			cookieStr += '|' + wrapper;
			ajb.setCookie('wrappers', cookieStr, ajb.getDomain(), null);
		}
	} else {
		ajb.setCookie('wrappers', '|' + wrapper, ajb.getDomain(), null);
	}
	$('#' + wrapper).show('normal');
});*/
$('#product-sample-select-all').click(function (e) {
	e.preventDefault();
	$('input[name=product-sample[]]').attr('checked', 'checked');
});
// end

$(function () {
    
    // drop down nav
    /*$('.sub-cat-list li').click(function () {
        $('.sub-cat-list ul ul').slideUp();
        $(this).children('ul').slideDown();
    });*/
    
    $('.sub-cat-list li a').not('.sub-cat-list li ul a').mouseover(function () {
        $('.sub-cat-list ul ul').hide();
        $(this).parent().children('ul').show();
    });
    /*$('.sub-cat-list ul ul').mouseleave(function () {
        
    });*/
    // end
    // catalog request form panel
    /*var cookieStrSplit = (ajb.getCookie('wrappers')) ? ajb.getCookie('wrappers').split('|') : false;
    if (cookieStrSplit) {
		for (i = 0; i < cookieStrSplit.length; i++) {
			$('div[id=' + cookieStrSplit[i] + ']').css('display', 'block');
		}
    }*/
    // end
    // lightbox
    $('a[rel^=prettyPhoto]').prettyPhoto({ theme: 'dark_rounded' });
    // end
    
    // catalog request
    /*if ($('#complete-catalog:checked').length) {
		$('input[name^=productGroup]').attr('disabled', 'disabled');
    }
    $('#complete-catalog').click(function () {
		$('input[name^=productGroup]').attr('disabled', 'disabled');
    });
    $('#product-group').click(function () {
		$('input[name^=productGroup]').removeAttr('disabled');
		if ($('input[name^=productGroup]:checked').length === 6) {
			$('input[name^=productGroup]').removeAttr('checked');
		}
    });
    $('input[name^=productGroup]').click(function () {
		if ($('input[name^=productGroup]:checked').length === 6) {
			$('input[name^=productGroup]').attr('disabled', 'disabled');
			$('#complete-catalog').attr('checked', 'checked');
		}
    });*/
    
    $('#name').focus();
    // end 
    
    // map 
    $('#map #copy li a, map area').click(function (e) {
        e.preventDefault();
        var color;
        if ($(this).attr('class').length) {
            color = '#' + $(this).attr('class');
        } else { 
            color = '#' + $(this).parent().attr('class');
        }
        
        $('#map #contact-wrapper div').hide();
        $(color).show();
        
    });
    // end
    
});







