/*
 *  main.js - general js file for missiontuition
 */

$(function() {

	// XHTML valid target=_blank alternative
    $('a[rel*=external]').click( function() {
        window.open(this.href);
        return false;
    });
    
    // ignore links that are just #
    $("a[href='#']").click(function() {
    	return false;
    });
    
    $("#store-right a").attr('href','#').css('cursor','default').click(function(){ return false; });
    
});
