$(function () {
	//Declararea valorilor CA / ani
	var turnover = [[1991, 0.1], [1992, 0.4], [1993, 1.9], [1994, 2.2], [1995, 3.9], [1996, 6], [1997, 5.5], [1998, 6.7], [1999, 7.5], [2000, 8], [2001, 9.1], [2002, 10.2], [2003, 12.5], [2004, 15.5], [2005, 21.5], [2006, 25.5], [2007, 36],[2008, 38]];
	//generarea graficului
	$.plot($("#placeholder"), [
        { label: "BRINEL Turnover (mil USD)",  data: turnover}],
	{
        lines: { show: true },
        points: { show: true },
        xaxis: {
	    ticks: 10	
        },
        yaxis: {
            ticks: 5
        },
        grid: {
            backgroundColor: "#fffcf9"
        },
        colors: [ "#ff0000"]
	});
	
	//restul de cod JQuery

	$("#slider").hide()
	$("#slider_btn").bind("mouseover", function(){$(this).css("cursor","pointer");})
	$("#slider_btn").bind("click", function()
	{
		$("#slider").animate({height: 'toggle', opacity: 'toggle'}, 'slow');
	});


});