/*
	Author: Talhah Mahomedy (tmahomedy@barrowsonline.com)
	Project: Barrows | Retail Marketing Specialists
	Function: Javascript for handling all quotes events

	copyright 2011 Barrows Design And Manufacture
*/

$(document).ready(function(){
    $('.au_quotes, .quotes').live('click', function(){
        var quotes = $(this).attr('id'); 
        if($(this).hasClass('au_quotes')){
            quotes = $(this).next().attr('id');
        }
        category_number = quotes.replace('quotes_', '');
        category = 'quotes';
        background_color = '#303133';

        goto_location(category, category_number, background_color, 1004);

    });

});

