/**
 * jQuery stuff
 */
$(document).ready(function() {

	// ie6 hover fix; pngfix
	if($.browser.msie && $.browser.version.substr(0,1) <= 6) {
		$('h1 > img, h1 > a > img, #visual > img, ul.articles, ul.articles > li.last').pngfix({ repeatMethod:"crop" });
	}

	// comment form focus fix
	$('.focus').each(function () {
		var defaultValue = $(this).val();
		if(defaultValue.length > 1) {
			$(this).click(function () {
				var currentValue = $(this).val();
				if(currentValue == defaultValue) {
					$(this).val('');
				}
			}).blur(function () {
				var currentValue = $(this).val();
				if(currentValue.length == 0 || currentValue == defaultValue) {
					$(this).val(defaultValue);
				}
			});
		}
	});

	// swfs
	$('#sponsors').flash({
		src: '/&res/swf/sponsori_footer.swf',
		width: '100%',
		height: '100%',
		wmode: 'transparent'
	});
});