
jQuery.noConflict();

/*
 * General DOM ready statemenets
 * 
 */
jQuery(function($) {
	
	$('.header_menu a').each(function(){
		if($(this).attr('href')==document.location)
		{
			$(this).addClass('active')
		}
	})
	
	$('.tab-selector a').click(function(){
		$('.tab-selector a').css('font-weight','normal');
		$(this).css('font-weight','bold');
	})
	
	$('.tab-selector a').first().css('font-weight','bold');
});


