// JavaScript Document

/*		productspec_h = $('#productspec_holder').height();
		howtouse_h = $('#howtouse_holder').height();
		architects_h = $('#architects_holder').height();
		$('#product_tabs_content').height(productspec_h);
		
		$('.product_quantity_select').keyup(getVal);
		$('.product_quantity_select').blur(checkVal);
		$('#productspec_tab').click(activate_productspec);
		$('#howtouse_tab').click(activate_howtouse);
		$('#architects_tab').click(activate_architects);
		$('.product_image_preview').click(product_image);
		$('.product_break_toggle').click(toggle_break);
		*/


$(document).ready(function(){
	$('.info_tabs a').click(activate_fragment);
	$('#fragment-2,#fragment-3,#fragment-5,#fragment-6').hide();

	function activate_fragment() {
		var parent_ul = $(this).parents().filter('ul').attr('id');
		var disable = $(this).attr('rel');
		var enable = $(this).attr('href');
		if ($(enable).css('display') == 'none') {
			$(disable).slideUp(650);
			$.timer(800,function(){
				$(enable).slideDown('normal');
			});
			$('#'+parent_ul+' > li').removeClass('selected');
			$(this).parent().addClass('selected');
		}
		return false;
	}
});