jQuery(document).ready(function($) {
	
	$('#faq .head a').click(function() {
		var href = $(this).attr('href');
		$('#faq .head a').removeClass('active');
		$(this).addClass('active');
		$('#faq .tab').hide();
		$(href).fadeIn();
		return false;
	});
	
	if ($.browser.msie && $.browser.version.substr(0,1)<7) {
		DD_belatedPNG.fix('h1#logo a, #page-t, #page-cnt, #page-b, #footer .col img');
	};
	
	$('.blink').focus(function () {
		if ($(this).val() == $(this).attr('title')) {
			$(this).val('');
		}
	}).blur(function () {
		if ($(this).val() == '') {
			$(this).val($(this).attr('title'));
		}
	});
});
