// All packed


function displayImage(domAAroundImgThumb) {
    if (!domAAroundImgThumb.hasClass('currentpic')) {
        if (domAAroundImgThumb.attr('href')) {
            var newSrc = domAAroundImgThumb.attr('bigurl').replace();
            jQuery('#largepic').fadeOut('fast', 
            function() {
                jQuery(this).attr('src', newSrc);
                jQuery(this).fadeIn('fast')
            });
            jQuery('#pro_piclist li a').removeClass('currentpic');
            jQuery(domAAroundImgThumb).addClass('currentpic')
        }
    }
}
jQuery(document).ready(function() {
    jQuery('#pro_piclist li a').hover(function() {
        displayImage($(this))
    });
	
    jQuery('.c_nav_list li').hover(function() {
        jQuery(this).children('ul').slideDown(100).prev().addClass("currentHover");
    },
    function() {
        jQuery(this).children('ul').slideUp(100).prev().removeClass("currentHover");
    });
	
    jQuery(":text,textarea").focus(function() {
        jQuery(this).parent().addClass("currentFocus")
    });
    jQuery(":text,textarea").blur(function() {
        jQuery(this).parent().removeClass("currentFocus")
    })
});



