var $j = jQuery.noConflict();
$j(function() {
	bouncer();	 // links jumper script	
	//accordionek(); //accordion
	//if ($j("#contact_form").length > 0) validateContactForm();
});


function bouncer() {	
	$j('.tekst').hover (function() { //mouse in
				$j(this).stop().animate({ paddingLeft: 5 }, 400, 'easeOutBounce');
				}, function() { //mouse out
				$j(this).stop().animate({ paddingLeft: 0 }, 400, 'easeOutBounce');
				});	

	
}

var ie6 = jQuery.browser.msie && parseInt(jQuery.browser.version) < 7;

