/*
	////---------------------------------------------
	\\\\ tvhconsulting.com - Conseil et mise en œuvre de solutions ERP
	//// 	Default javascript functions based on jquery & prototype
	\\\\ Sogoa © 2007 creation 
	//// 	coded by : damien virot
	\\\\---------------------------------------------
*/

jQuery.noConflict();

// Put all your code in your document ready area
jQuery(document).ready(function($){

	$('#zone-one input').click( function(){
		$(this).attr('value','');
	});
	
	$('.news, #flash-header img').ifixpng();
	
	/*$('.watchmore').click(
		function() {
			$(this).hide();
			$(this).next().show();
			$(this).parent().parent().children('.next').BlindToggleVertically(500);
			$(this).parents('div.news').animate( { backgroundColor: '#e6e7df', style: 'padding: 5px;' }, "normal");
		}
	);

	$('.closenews').click(
		function() {
			$(this).hide();
			$(this).prev().show();
			$(this).parent().parent().children('.next').BlindToggleVertically(500);
			$(this).parents('div.news').animate( { backgroundColor: '#FFFFFF', style: 'padding: 0px 10px 0px 0px;' }, "normal");
		}
	);*/

});

// Use Prototype with $(...), etc.
// $('someid').style.display = 'none';