// JavaScript Document

$(document).ready(function()
{
	// fadeSlideShow
	$('.imageSlider').css(
	{
		'border': 'solid 2px #2A0E74',
		'border-radius': '3px / 3px',
		'-moz-border-radius': '3px / 3px',
		'-webkit-border-radius': '3px / 3px'
	});

	$('.imageSlider').fadeSlideShow();
});

