$.fn.initExternalLinks = function() {
	$(this).each(function() {
		obj = jQuery(this);
		if(obj.attr('rel') == 'external') obj.attr('target', "_blank");

	});
}

$.fn.showCorners = function() {
	
}


$(document).ready(function(){
	$('a').initExternalLinks();

	$('.portfolio_thumb').corner("round 10px").parent().css('padding', '2px').corner("round 10px cc:#57c8dc")
	$(this).find('div.portfolio_thumb_bg').css('background-color', 'transparent').children('.jquery-corner').css('display', 'none');
	$(this).find('.portfolio_thumb').children('.jquery-corner').children('div').css('border-color', '#57c8dc');
	
	$('ul#portfolio li').hover(
		function() {
			$(this).find('div.portfolio_thumb_bg').css('background-color', '#ffffff').children('.jquery-corner').css('display', 'block');
			$(this).find('.portfolio_thumb').children('.jquery-corner').children('div').css('border-color', '#ffffff');
		}, 
		function() {
			$(this).find('div.portfolio_thumb_bg').css('background-color', 'transparent').children('.jquery-corner').css('display', 'none');
			$(this).find('.portfolio_thumb').children('.jquery-corner').children('div').css('border-color', '#57c8dc');
		}
	);
	
   
	$("a[rel^='lightbox']").slimbox(
		{
			overlayOpacity: 0.6,
			easing: "easeOutElastic",
			captionAnimationDuration: 1,
			counterText: "Image {x} / {y}"

		}, 
		null,
		function(el) {	return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));	}
	);

	
});
