$(document).ready(function() {
	
	$(function() {$(".datepicker").datepicker({dateFormat:'dd/mm/yy'});});
	
	$('#SmartCart').smartCart({
		productItemTemplate:'<h3><%=pname%></h3><p>Category: <%=pcategory%></p><p class="description"><%=pdesc%></p><p>Price (hire per week): <strong>&pound;<%=pprice%></strong></p>'	
	});

	$('#studioslides a').lightBox();

	$('#slideshow').cycle({ 
		fx:     'scrollLeft', 
		timeout: 5000,  
		after:   onBefore,
		pager:	 '#slides',
		pagerAnchorBuilder: function(idx, slide) { 
				return '<li><img src="' + slide.src + '" height="60" /></li>'; 
		} 
		
	 });
	
	function onBefore() { 
		$('#slideshow-caption').html("") .append('<h3>' + this.alt + '</h3>'); 
	}
	
	CKEDITOR.replaceAll( 'contentclass',{
		toolbar : 'MyToolbar',
		uiColor : '#25AAE1'
	});
	
	//CKEDITOR.replace( 'content',{
	//	toolbar : 'MyToolbar',
	//	uiColor : '#25AAE1'
	//});
	
});

function confirmdel(id, page) {
	if(confirm('Are you sure you want to delete?')) {
		document.location = page + '_manage.php?delete=' + id;
	}
}


