/* Shorthand Border Radius */
.selector {
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	
	behavior: url(border-radius.htc)
}

/* Border Radius */
.selector {
	-moz-border-radius: 5px 5px 5px 5px;
	
	-webkit-border-top-left-radius: 5px 5px; 
	-webkit-border-top-right-radius: 5px 5px; 
	-webkit-border-bottom-left-radius: 5px 5px;
	-webkit-border-bottom-right-radius: 5px 5px;
	
	border-top-left-radius: 5px 5px;
	border-top-right-radius: 5px 5px;
	border-bottom-left-radius: 5px 5px;
	border-bottom-right-radius: 5px 5px;
	
	behavior: url(border-radius.htc)
}



/* Code info
   here every selector should include this code for cross-browser compatibility and 
   property begavior should link to .htc file.
 */
/* link more info
http://code.google.com/p/curved-corner/
http://www.the-art-of-web.com/css/border-radius/
 */
