$(document).ready(function() {
    $('#loading').ajaxStart(function() {
        $(this).show();
    });
    $('#loading').ajaxStop(function() {
        $(this).hide();
    });

    $('#flash-notice')
        .show("slide", { direction: "up" }, 1000)
        .animate({opacity: 1.0}, 5000)
        .hide("slide", { direction: "up" }, 1000);
    
    $('#flash-error')
	    .show("slide", { direction: "up" }, 1000)
	    .animate({opacity: 1.0}, 5000);

    $('table.chart tr').hover(function() {
        $(this).children('td').addClass('hover');
    }, function() {
        $(this).children('td').removeClass('hover');
    });

    $('table.striped tbody tr:odd').children('td').addClass('odd');
    $('ul.striped li:odd').addClass('odd');

    $('#subnav li').corner('top 3px');
    $('#nav a').corner('top 3px');
    
    $('a[rel=product-image-group]').fancybox({
    	'transitionIn':	'elastic',
    	'transitionOut': 'elastic', 
    	'speedIn': 600,
    	'speedOut': 200,
    	'overlayShow': true 
    });
    
    $('.cart_add').click(function() {
    	$(this).val('Added!');
    	if ($('#cart').css('display') == 'none') {
    		$('#cart').slideDown();
    	}
    	$('#cart a').text('Updated Cart!');
    });
});

