$(document).ready(function() {

$('.hideable:not(.gal)').fadeOut();
$('.gal').prev().children('h2').css({ 'font-weight' : '700' });

var flip_cnt = 0;

$('.hide_btn2').click(function(){
	var _fontWeight = $(this).children('.subheading-bg').css('font-weight');
//	alert(_fontWeight);
	if(_fontWeight == 400 || _fontWeight == 700 || _fontWeight == 'undefined'){
		if(_fontWeight != '700'){
			$(this).children('.subheading-bg').css({ 'font-weight' : '700' });
			$(this).next().fadeIn();	
		}	
		else{
			$(this).children('.subheading-bg').css({ 'font-weight' : '400' });
			$(this).next().fadeOut();	
		}
	}else{
		if(_fontWeight != 'bold'){
			$(this).children('.subheading-bg').css({ 'font-weight' : 'bold' });
			$(this).next().fadeIn();	
		}	
		else{
			$(this).children('.subheading-bg').css({ 'font-weight' : 'normal' });
			$(this).next().fadeOut();	
		}
		
	}
	

	return false;
});
});


