jQuery(document).ready(function() {
	var  roundImages = false;

	if (($.browser.mozilla && parseInt($.browser.version)<2)) {
		roundImages = true;
	}


	$('a.newwintrue').click(function(){
		window.open(this.href);
		return false;
	});

	if (roundImages) {
		$('.module-news div.items h3 a span.wrap img,.module-individual-directory div.items h3 a span.wrap img, p.image-left img, p.image-right img').each(function() {
			$(this).replaceWith('<span class="img" title="' + $(this).attr('alt') + '" style="display:inline-block;height:' + $(this).height() + 'px;width:' + $(this).width() + 'px;background:url(' + $(this).attr('src') + ') no-repeat;" />');
		});
	}

	$('form.standard p.field input, form.standard p.field select, form.standard p.field textarea').each(function() {
		$(this).focus(function() {
			$(this).parent().parent().children('label').addClass('active');
		});
		$(this).blur(function() {
			$(this).parent().parent().children('label').removeClass('active');
		});
	});

	$("a[rel^='fieldThumb']").prettyPhoto({
		social_tools: ''
	});
});
