jQuery(document).ready(function() {


	jQuery('img.topnavmno').hover(
		function(){
			jQuery('img.topnavmno').attr('src','fileadmin/templates/v1.0/images/topnav_m_ro.png');
		},
		function(){
			jQuery('img.topnavmno').attr('src','fileadmin/templates/v1.0/images/topnav_m_no.png');
		}
	);

	// SET FOCUS ON THE FIRST INPUT IN THE CONTACT FORM
	jQuery('.tx_powermail_pi1_form > fieldset > div:first > input').focus();

	// INSERT A "T IMAGE" AND SETUP THE CLICK "SHOW-HIDE" EVENT
 	var textPic = jQuery('.csc-textpic-text').html();
 	if( textPic ){
	 	
		jQuery('#contentnav').append( '<div class="textToggle"></div>' );
	 	jQuery('div.textToggle').append( '<a href="/" id="textToggleHide" class="showLink"><img src="fileadmin/templates/v1.0/images/t-disable.gif" alt="Hide text" /></a>' );
	 	jQuery('div.textToggle').append( '<a href="/" id="textToggleShow" class="hideLink"><img src="fileadmin/templates/v1.0/images/t-activate.gif" alt="Show text " /></a>' );
	 	
	 	jQuery('#textToggleHide').click(function(){
	 		jQuery('#textToggleHide').hide();
	 		jQuery('#textToggleShow').show();
	 		jQuery('.csc-textpic-text').hide();
	 		return false;
	 	});
	 	
	 	
	 	jQuery('#textToggleShow').click(function(){
	 		jQuery('#textToggleShow').hide();
	 	 	jQuery('#textToggleHide').show();
	 		jQuery('.csc-textpic-text').show();
	 		return false;
	 	});
 	}
 	
 	/**/
});
