/**
 * Application Scripts
 * Use it only for default methods around the website
 */
$(document).ready(function(){
	/**
	 * TARGET BLANK
	 */
	$('.target-blank').click(function(){
		$(this).attr('target', '_blank').click();
		return false;
	});
});
