$('#main_image').load( function () {
	var img1 = $('<img/>');
	img1.attr('src', '/fileadmin/kollektion/landingpage/startseite_ss12_1_sublime.jpg')
	    .attr('class', 'startseite')
	    .attr('width', '888')
	    .attr('height', '567');
	
	var img2 = $('<img/>');
	img2.attr('src', '/fileadmin/kollektion/landingpage/startseite_ss12_2_mystic.jpg')
	    .attr('class', 'startseite')
	    .attr('width', '888')
	    .attr('height', '567');

	var img3 = $('<img/>');
	img3.attr('src', '/fileadmin/kollektion/landingpage/startseite_ss12_3_tiger_pop.jpg')
	    .attr('class', 'startseite')
	    .attr('width', '888')
	    .attr('height', '567');

	$("#bigimages").prepend(img1);
	$("#bigimages").prepend(img2);
	$("#bigimages").prepend(img3);
	
	/*  CarouFredSel: an infinite, circular jQuery carousel.
	 *  Configuration created by the "Configuration Robot" at caroufredsel.frebsite.nl
	 */
	$("#bigimages").carouFredSel({
		width: 888,
		height: 567,
		items: {
			visible: 1,
			minimum: 1,
			start: 0,
			width: 888,
			height: 567
		},
		scroll: {
			pauseOnHover: true,
			fx: "fade"
		},
		auto: 5000,
		pagination: "#paginator"
	});
} );

