jQuery.noConflict($);

/*
 * Function to generate "h3" for blog sidebar elements
 */
//<![CDATA[

jQuery(document).ready(function($) {

		// Add Blog Categories title
		if ($("#blog-categories").children().size() > 0) $("#blog-categories").prepend("<h3>Categories<\/h3>");

		// Add Blog Archives title
		if ($("#blog-archives").children().size() > 0) $("#blog-archives").prepend("<h3>Archives<\/h3>");

		// Add Tags title
		if ($("#secondary-content ul.blog-tag-cloud").children().size() > 0) $("#secondary-content ul.blog-tag-cloud").before("<h3>Tags<\/h3>");

	});
	
//]]>

/*
 * Enable prettyPhoto and apply dark_rounded theme
 */
//<![CDATA[

jQuery(document).ready(function($) {

		$('a[rel^="prettyPhoto"]').prettyPhoto({theme:'dark_rounded'});
		
	});	
	
//]]> 
