var slider;

$(document).ready(function() {
			slider = $('.accordion').classicAccordion({
						width : 1100,
						height : 500,
						slideshow : false,
						shadow : true,
						alignType : 'leftBottom',
						closedPanelSize : 40,
						closePanelOnMouseOut : false,
						
						panelProperties : {
							0 : {
								captionWidth : 200,
								captionHeight : 35,
								captionTop : 30,
								captionLeft : 30
							},

							2 : {
								captionWidth : 380,
								captionHeight : 40,
								captionTop : 330,
								captionLeft : 30
							},

							4 : {
								captionWidth : 150,
								captionHeight : 120,
								captionTop : 270,
								captionLeft : 600
							},

							7 : {
								captionWidth : 300,
								captionHeight : 35,
								captionTop : 180,
								captionLeft : 250
							},

							8 : {
								captionWidth : 380,
								captionHeight : 40,
								captionTop : 330,
								captionLeft : 30
							},

							10 : {
								captionWidth : 150,
								captionHeight : 120,
								captionTop : 30,
								captionLeft : 620
							}

						}

					});
					
					//console.log(slider)

			slider.openPanel(0);

		});

