jQuery.fn.azSpecialsTab = function () {
	var w = jQuery('#az_st_default_img').width();
	var h = jQuery('#az_st_default_img').height();
	return this.each(function () {
		var ul = jQuery(this);

		ul.find('a[href^=#]').each(function (i) {
			var tabItem = jQuery(this);

			if (i) {
				jQuery(tabItem.attr('href')).hide();
			} else {
				tabItem.addClass('az_st_sel');
			}

			tabItem.click(function () {
				jQuery(ul.find('a.az_st_sel').removeClass('az_st_sel').attr('href')).hide();

				jQuery(tabItem.addClass('az_st_sel').attr('href')).show();
				//alert(az_specials_tab_image_width);
				jQuery('#az_specials_tab_img_'+(i+1)).html('<img src="'+tabItem.attr('rel')+'" alt="'+tabItem.text()+'" title=" '+tabItem.text()+' " border="0" width="'+w+'" />');
				
				tabItem.blur();

				return false;
			});
		});
	});
};

//$(function(){
$(document).ready(function() {
	jQuery('#az_specials_tab ul').azSpecialsTab();
});
