﻿$(function($)
{
    var options = {
        target: '#shop_menu_item',
        beforeSubmit:  function()
        {
            $('#filter-form input').attr('disabled', true);
            $('#shop_menu_item').animate({opacity: 0}, 400);
        },
        success: function()
        {
            $('#filter-form input').attr('disabled', false);
            $('#products li:nth-child(4n-3)').addClass('first');
            $('#products li:nth-child(4n)').addClass('last');
            $('#shop_menu_item').animate({opacity: 1}, 400);
        }
    };
    $('#filter-form').ajaxForm(options);
    $('#filter-form input').change(function()
    {
        $('#filter-form').submit();
    });
    $('div.form-wrapper select.required').change(function()
    {
        var url = $(this).attr('rel') + $(':selected', $(this)).val() + '/' + $('#material').val();
        $.get(url, function(new_price)
        {
            if (new_price != '')
            {
                $('b.price_').html(new_price);
            }
        });
    });
    $('div.bonus-items select.required').change(function()
    {
        var url = $(this).attr('rel') + $(':selected', $(this)).val() + '/';
        var bonus_item = $(this).closest('div.bonus-items');
        $.get(url, function(new_price)
        {
            bonus_item.find('a.price_').html(new_price);
        });
    });
    $('#pay_with_paypal').click(function(e)
    {
        if ($('#currency > :selected').val() == '1')
        {
            if (!confirm($('#pay_with_paypal_lvl').val()))
            {
                e.preventDefault();
            }
        }
    });
    // Item - view
    $('#id_options, #id_additions, #id_addition_options').closest('p').hide();
    $('.bonus-items select').change(function()
    {
        if ($(this).val() == '')
        {
            $(this).closest('div.bonus-items').find('input[type=hidden]').val('0');
        }
        else
        {
            $(this).closest('div.bonus-items').find('input[type=hidden]').val('1');
        }
    });
    $('div.bonus-items input[type=hidden]').each(function()
	{
    	if ($(this).val() == '1')
		{
    		var bonus_items = $(this).closest('div.bonus-items');
    		bonus_items.find('a.add-addition').hide();
    		bonus_items.find('a.remove-addition').show();
		}
	});
    $('#item-details').submit(function(e)
    {
        // set item.options
        $('#id_options').find(':selected').attr('selected', false);
        $('div.form-wrapper').children('p:visible').not(':first').not(':last').find(':selected').each(function()
        {
            $('#id_options > option[value='+$(this).val()+']').attr('selected', true);
        });
    });
    $('#add_to_cart').click(function(e)
    {
        e.preventDefault();
        $('#item-details').submit();
    });
    $('#add_to_wish_list').click(function(e)
    {
        e.preventDefault();
        $('#id_wishlist').val('1');
        $('#item-details').submit();
    });
    $('#post_feedback').click(function(e)
    {
        e.preventDefault();
        $('#testimonial').submit();
    });
    $('div.gallery a').click(function(e)
    {
        $('div.item-img img').attr('src', $(this).attr('rel'));
        e.preventDefault();
    });
    $('a.zoom').click(function(e)
    {
        window.open($(this).attr('rel'), $(this).attr('rel'), "menubar=no,width=640,height=480,toolbar=no");
        e.preventDefault();
    });
    
    // Currency
    $('#currency').change(function(e)
    {
        $('#currency_val').val($(this).val());
        $(this).closest('form').submit();
    });
});
