/*
 * jQuery Nivo Slider v2.0
 * http://nivo.dev7studios.com
 *
 * Copyright 2010, Gilbert Pellegrom
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 * 
 * March 2010
 */
 
 
/* The Nivo Slider styles */

#slider {
	position:relative;
	background:url(images/loading.gif) no-repeat 50% 50% 50% 50%; 
	width: 930px;
	height: 180px;
	margin-left: 28px;
	margin-right: 30px;
	background:#202834 url(loading.gif) no-repeat 50% 50% 50% 50%;
	-moz-box-shadow:0px 0px 10px #000;
	-webkit-box-shadow:0px 0px 10px #000;
	box-shadow:0px 0px 10px #000;
	margin-top: 10px;
	margin-bottom: 50px;
}

#slider img {
	position:absolute;
	top:0px;
	left:0px;
	display:none;
}

.nivoSlider {
position:absolute;
}
.nivoSlider img {
left:0;
position:absolute;
top:0;
}
.nivoSlider a.nivo-imageLink {
border:0 none;
display:none;
height:100%;
left:0;
margin:0;
padding:0;
position:absolute;
top:0;
width:100%;
z-index:60;
}
.nivo-slice {
display:block;
height:100%;
position:absolute;
z-index:50;
}

.nivo-directionNav a {
cursor:pointer;
position:absolute;
top:45%;
z-index:99;
}
.nivo-prevNav {
left:0;
}
.nivo-nextNav {
right:0;
}
#slider a {
border:0 none;
display:block;
}
.nivo-controlNav {
bottom:-30px;	
left:47%;
position:absolute;
}
.nivo-controlNav a {
background:url("http://creativossinideas.com/wp-content/themes/default/nivoslider/images/bullets.png") no-repeat scroll 0 0 transparent;
border:0 none;
display:block;
float:left;
height:10px;
margin-right:3px;
text-indent:-9999px;
width:10px;
}
.nivo-controlNav a.active {
background-position:-10px 0;
}
.nivo-controlNav a {
cursor:pointer;
position:relative;
z-index:99;
}
.nivo-controlNav a.active {
font-weight:bold;
}
.nivo-directionNav a {
background:url("http://creativossinideas.com/wp-content/themes/default/nivoslider/images/arrows.png") no-repeat scroll 0 0 transparent;
border:0 none;
display:block;
height:34px;
text-indent:-9999px;
width:32px;
}
a.nivo-nextNav {
background-position:-32px 0;
right:10px;
}
a.nivo-prevNav {
left:10px;
}


<script type="text/javascript">
$(window).load(function() {
	$('#slider').nivoSlider({
		effect:'fade', //Specify sets like: 'fold,fade,sliceDown'
		slices:15,
		animSpeed:500,
		pauseTime:4000,
		startSlide:0, //Set starting Slide (0 index)
		directionNav:false, //Next & Prev
		directionNavHide:true, //Only show on hover
		controlNav:false, //1,2,3...
		controlNavThumbs:false, //Use thumbnails for Control Nav
      controlNavThumbsFromRel:false, //Use image rel for thumbs
		controlNavThumbsSearch: '.jpg', //Replace this with...
		controlNavThumbsReplace: '_thumb.jpg', //...this in thumb Image src
		keyboardNav:false, //Use left & right arrows
		pauseOnHover:true, //Stop animation while hovering
		manualAdvance:false, //Force manual transitions
		captionOpacity:0.8, //Universal caption opacity
		beforeChange: function(){},
		afterChange: function(){},
		slideshowEnd: function(){} //Triggers after all slides have been shown
	});
});

</script>
