/* Author:

*/


$(document).ready(function(){
	
	// Run Matt Kersley's jQuery Responsive menu plugin (see plugins.js)
	if ($.fn.mobileMenu) {
		$('ol#id').mobileMenu({
			switchWidth: 768,                   // width (in px to switch at)
			topOptionText: 'Choose a page',     // first option text
			indentString: '&nbsp;&nbsp;&nbsp;'  // string for indenting nested items
		});
	}

	// Run Mathias Bynens jQuery placeholder plugin (see plugins.js)
	if ($.fn.placeholder) {
		$('input, textarea').placeholder();
	}


	// Xhosa Fundis - Materials for Sale page

//	var products = $('.page-materials-for-sale .entry-content ol')
//	products.addClass("t");

//	function addProduct(product){
//		alert product.attr('href');
//	}

//	products.find('a')
//		.click(function(){
//			addProduct($(this));
//			return false;
//		})

//	var product_links = $('.buy');

//	product_links.bind('click',function(){
//		alert($(this).attr('href'));
//		return false;
//	});

});








