$(document).ready(function() {
	$('#slider').nivoSlider();
//	$('.productCategories a').click(function(e) {
//		$('.productRight').load($(this).attr('href') + ' .products');
//		e.preventDefault();
//	});
	$('.contactListSelector select').change(function() {
		$('.contactList li.active').removeClass('active');
		$('.contactList li#' + $(this).val()).addClass('active');
	}); 
});
var SifaZeytinyaglari = {
	'alert': function(messageTitle, messageText) {
		$('<div>').dialog({
            modal: true,
            open: function () { $(this).html('<p>' + messageText + '</p>') },
            close: function(e, i) { $(this).remove(); },
            height: 300,
            width: 400,
            title: messageTitle,
			buttons: {
				"Onayla": function() {
					$( this ).dialog( "close" );
				}
			}
        });
	},
	'confirm': function(messageText, targetUrl) {
		$('<div>').dialog({
            open: function () { $(this).html('<p>' + messageText + '</p>') },
            close: function(e, i) { $(this).remove(); },
			resizable: true,
            height: 300,
            width: 400,
            title: 'Onayla',
			modal: true,
			buttons: {
				"Onayla": function() {
					window.location = targetUrl;
					$( this ).dialog( "close" );
				},
				"İptal": function() {
					$( this ).dialog( "close" );
				}
			}
        });
	}
}
