/**
 * @author Jeff common calls for jQuery
 *
 * Developed by topdown Webmasters United.org / Valid Webs.com
 *
 * Images and code with-in these custom files are (c) copy right protected and are NOT GLP
 *  (c) Webmasters United.org / Valid Webs.com Web Development, 2009 
 *
 * If you are considering pirating this theme, there is nothing I can do to stop you at this point.
 * However, I ask that you please consider that I am just a person trying to make some money 
 * doing what I love, designing themes. I am very flattered that my theme is popular enough to pirate,
 * but I would greatly appreciate it if you would not re-distribute my theme.
 * Thank You,
 *    topdown Webmasters United.org / Valid Webs.com
 *
*/
// Lets see if we can get rid of some conflicts
jQuery.noConflict();

jQuery(document).ready(function($){

	//Clickable rows, forums and topics						   
	$("dt.click").click(function() {
    	window.location = $(this).find("a").attr("href");
		return false;
	});
	
	//Clickable rows, forums and topics						   
	$("dt.forum-title-block").click(function() {
    	window.location = $(this).find("a").attr("href");
		return false;
	});
	
	//new window method for external links
	$('a.external').click(function(){
		window.open(this.href);
	return false;
	});

     //alert("Document Ready Test :P");

});
