﻿/// <reference path="~/js/jquery-1.3.2.js" />

$(document).ready(function() {
	// init contenth eight
	if ($("#sitecontent").height() < 350) {
		$("#sitecontent").height(350);
	}
	// sideblock
	$('.sideblock > div').css("padding", "5px");

	// fade image effects
	if ($('.imgfade img').size() > 0) {
		var imgheight = $('.imgfade img').eq(0).height();
		$('.imgfade').innerfade({
			speed: 'slow',
			timeout: 4000,
			type: 'sequence',
			containerheight: imgheight + 'px'
		});
	}

	// tabs
	if ($('.tabs').size() > 0) {
		$('.tabs').tabs();
		$('.tabs > ul li').css("font-size", "11px");
		$('.tabs-nasted').tabs();
	}
});
