//Document ready
jQuery(document).ready(function(){
	
	//Hide show messages
	jQuery('ul.messages')
		.children()
		.append('<a class="btn-remove" href="#dismiss">Dismiss</a>')
		.end()
		.find('a.btn-remove').live('click', function() {
			if(jQuery(this).parent().parent().children().size() == 1)
			{
				jQuery(this).parent().parent().fadeOut('fast');
			} else {
				jQuery(this).parent().fadeOut('fast');
			}
			
			return false;
		})
		.end();
		
	//Product tabs
	jQuery('.product-collateral > div.tab').not(':first').hide();
	jQuery('.product-collateral > div > ul#tabs').find('li:first').addClass('active').end().find('a').click(
		function()
		{
			//Hide all tab content
			jQuery('.product-collateral > div.tab').hide();
			
			//Make this tab active
			jQuery(this).closest('ul').find('li').removeClass('active').end().end().closest('li').addClass('active');
			
			//Show tab contents
			var tab_id = jQuery(this).attr('href');
			jQuery(tab_id).show();
			
			return false;
		}
	);
			
});
