$(function() {	
	openWindow();
});
/* theme selector | temporary component */
openWindow = function () {
	$("a[rel='popup']").click(function(){
		window.open(this.href);
		return false;		
	})
}