Cufon.replace('.contentheading,.componentheading,h2',{ fontFamily: 'Helvetica Neue LT Pro' });
Cufon.replace('.hmtitle',{ fontFamily: 'Myriad Pro' });

 jQuery().ready(function(){
	// applying the settings


	//the main app starts here...

	//change the cursor type for each scroller
	jQuery('.scroller').css("cursor","pointer");

	//settings to pass to function
	var scroller			= jQuery('.scroller');	// element(s) to scroll
	var scrolling_velocity 	= 20; 				// 1-99
	var scrolling_from 		= 'right';			// 'right' or 'left'

	//call the function and start to scroll..
	startScrolling( scroller, scrolling_velocity, scrolling_from );

        jQuery('#slogan_campanie a').fadeIn(1500);

        $(".prehomepage_module:odd").css("float","right");
       // $(".mainlevel:last").css("background","none");

        $(".raspuns_intrebare").hide();

        $('.intrebare').click(function() {
                                //$(".raspuns_intrebare").hide("slow");
				 $(this).parent().find(".raspuns_intrebare").slideToggle("slow");
			});

       if(!$.browser.msie)
             $(".partener_box").hover(function() {
                        $(".partener_box").stop();
                            $(".partener_box").animate({opacity:0.4},500);
                             $(this).stop();
                            $(this).animate({opacity:1},500);
                },function() {
                            $(".partener_box").stop();
                            $(".partener_box").animate({opacity:1},200);
                });
       
        
});




