/*-----------------------------------------
 
 copyright 2009 by mmc
 
 Version: 1.0
 
 Author: Georg Paul
 
 Author URI: http://www.mmc-agentur.at
 
 -------------------------------------------*/



$(document).ready(function(){
	
	formDefaults();
	mmcJSslide();
	
	$('.tx-mmcjsslideshow-pi1').css('height', '190px');
	
});

function mmcJSslide() {

$('#slideshowContent ul').innerfade({
		animationtype: 'fade',
		speed: 1200,
		timeout: 5000,
		type: 'random'
	});
}

function formDefaults() {
	$('input, textarea').each(function() {
		if ($(this).val()=='') {
			$(this).val($(this).attr('title'));
		}
	});
	$('input, textarea').bind('focus', function() {
		if ($(this).val() == $(this).attr('title')) {
			$(this).val('');
		}
	});
 
	$('input, textarea').bind('blur', function() {
		if ($(this).val() == '') {
			$(this).val($(this).attr('title'));
		}
	});
}
